From e17697f41e885c3750ff38040326fd4032d793cb Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 28 Dec 2024 00:46:21 +0200 Subject: [PATCH] fix(mobile): calendar not shown properly on horizontal layout (closes #783) --- src/public/stylesheets/theme-next/shell.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/public/stylesheets/theme-next/shell.css b/src/public/stylesheets/theme-next/shell.css index be13055c6..b6a6a91f1 100644 --- a/src/public/stylesheets/theme-next/shell.css +++ b/src/public/stylesheets/theme-next/shell.css @@ -119,6 +119,14 @@ body.layout-horizontal > .horizontal { margin: var(--launcher-pane-button-gap) var(--launcher-pane-button-margin); } +body.mobile #launcher-pane .dropdown-menu.show { + position: fixed !important; + top: var(--launcher-pane-size) !important; + left: 0 !important; + right: 0 !important; + transform: unset !important; +} + #launcher-pane .launcher-button { padding: 0 !important; border-radius: 8px;