Change .mainDrawer-scrollContainer from padding to margin. Firefox requires the CSS element to be margin to get the desired behavior for overlap.

Fixes: 1035
This commit is contained in:
Andrew Hunter 2020-04-05 17:20:15 -04:00
parent f2d323a08d
commit ee60d8c017

View File

@ -242,7 +242,7 @@
} }
.mainDrawer-scrollContainer { .mainDrawer-scrollContainer {
padding-bottom: 10vh; margin-bottom: 10vh;
} }
@media all and (min-width: 40em) { @media all and (min-width: 40em) {
@ -314,6 +314,7 @@
.dashboardDocument .mainDrawer-scrollContainer { .dashboardDocument .mainDrawer-scrollContainer {
margin-top: 4.6em !important; margin-top: 4.6em !important;
} }
} }