diff --git a/app/assets/stylesheets/common/base/menu-panel.scss b/app/assets/stylesheets/common/base/menu-panel.scss index a29da3f029a..a02fccf8b89 100644 --- a/app/assets/stylesheets/common/base/menu-panel.scss +++ b/app/assets/stylesheets/common/base/menu-panel.scss @@ -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 { diff --git a/app/assets/stylesheets/desktop/menu-panel.scss b/app/assets/stylesheets/desktop/menu-panel.scss new file mode 100644 index 00000000000..a6e7bbaf5b1 --- /dev/null +++ b/app/assets/stylesheets/desktop/menu-panel.scss @@ -0,0 +1,3 @@ +.menu-panel .panel-body { + max-height: calc(100vh - 100px); +}