FIX: ensure menu not too tall on desktop only

Followup to af65809e, menu-panel shorter than 100vh does not look good on mobile.
This commit is contained in:
Penar Musaraj 2019-11-03 18:47:53 -05:00
parent ce0bac7a3d
commit 7eb26e5bbb
2 changed files with 4 additions and 1 deletions

View File

@ -51,7 +51,7 @@
touch-action: pan-y pinch-zoom;
overflow-y: auto;
overflow-x: hidden;
max-height: calc(100vh - 100px);
max-height: 100vh;
}
.badge-notification {

View File

@ -0,0 +1,3 @@
.menu-panel .panel-body {
max-height: calc(100vh - 100px);
}