From 422395671dee53191baad83a1efd72e0fb3edb6a Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 4 Jan 2025 14:18:07 +0200 Subject: [PATCH] fix(mobile): launcher bar on top for tablet mode --- src/public/stylesheets/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/public/stylesheets/style.css b/src/public/stylesheets/style.css index d87bf8fb1..d4828bae1 100644 --- a/src/public/stylesheets/style.css +++ b/src/public/stylesheets/style.css @@ -1174,6 +1174,7 @@ body:not(.mobile) #launcher-pane.horizontal .dropdown-submenu > .dropdown-menu { background-color: var(--left-pane-background-color); } +/* Mobile, phone mode */ @media (max-width: 991px) { #mobile-sidebar-container { position: fixed; @@ -1209,7 +1210,12 @@ body:not(.mobile) #launcher-pane.horizontal .dropdown-submenu > .dropdown-menu { } } +/* Mobile, tablet mode */ @media (min-width: 992px) { + body.mobile #root-widget { + flex-direction: column-reverse !important; + } + #mobile-sidebar-wrapper { transform: none !important; }