Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 423 Bytes

20201103_css_fix.md

File metadata and controls

17 lines (14 loc) · 423 Bytes

Fix CSS React UI height in Firefox

This migration is only relevant if you're using a React UI for Admin.

To update, change admin/style.css as follows:

        /* Don't cut off dropdowns! */
        overflow: initial;
 }
-.m.adapter-container {
+.m.adapter-container,
+.m.adapter-container > div.App {
        /* Fix layout/scrolling issues with tabs */
        height: 100%;
        width: 100%;