From e7eaa5fd5820c5cfef9849e4af86e68d4ab2e81b Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 29 Nov 2025 19:49:38 +0200 Subject: [PATCH] fix(mobile): global menu backdrop on tablet view --- apps/client/src/stylesheets/theme-next/base.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/client/src/stylesheets/theme-next/base.css b/apps/client/src/stylesheets/theme-next/base.css index 0902a9aa0..2f207ed44 100644 --- a/apps/client/src/stylesheets/theme-next/base.css +++ b/apps/client/src/stylesheets/theme-next/base.css @@ -320,6 +320,10 @@ body.mobile #context-menu-cover { &.global-menu-cover { bottom: calc(var(--mobile-bottom-offset) + var(--launcher-pane-size)); + + @media (min-width: 992px) { + bottom: 0; + } } }