From 1650ca3817d1efd2c33d65f3fca0d38c9940d22c Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Tue, 22 Nov 2022 10:34:44 -0800 Subject: [PATCH] Hotfix for NC24 --- src/App.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index fa09f584..d6682632 100644 --- a/src/App.vue +++ b/src/App.vue @@ -314,6 +314,11 @@ body { // now set on #app-navigation-vue border-radius: 0; width: calc(100% - var(--body-container-margin) * 1); // was *2 + + // Reduce size of navigation. NC <25 doesn't like this on mobile. + #app-navigation-vue { + max-width: 250px; + } } // Prevent content overflow on NC <25 @@ -325,7 +330,6 @@ body { #app-navigation-vue { border-top-left-radius: var(--body-container-radius); border-bottom-left-radius: var(--body-container-radius); - max-width: 250px; } }