From 845b9ba84da7833b8f9deebac2d5c68dabf43cf9 Mon Sep 17 00:00:00 2001 From: "Simon L." Date: Fri, 17 May 2024 10:43:55 +0200 Subject: [PATCH] feat(mobile): restore hiding the appnavigation on mobile Signed-off-by: Simon L --- src/components/NcAppNavigation/NcAppNavigation.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/components/NcAppNavigation/NcAppNavigation.vue b/src/components/NcAppNavigation/NcAppNavigation.vue index 1ea2e40202..3bfe5f83e7 100644 --- a/src/components/NcAppNavigation/NcAppNavigation.vue +++ b/src/components/NcAppNavigation/NcAppNavigation.vue @@ -307,4 +307,12 @@ export default { position: absolute; } } + +// Put the toggle behind appsidebar on small screens +@media only screen and (max-width: $breakpoint-small-mobile) { + .app-navigation { + z-index: 1400; + } +} +