Hotfix for NC24

pull/245/head
Varun Patil 2022-11-22 10:34:44 -08:00
parent cd5d163cd1
commit 1650ca3817
1 changed files with 5 additions and 1 deletions

View File

@ -314,6 +314,11 @@ body {
// now set on #app-navigation-vue // now set on #app-navigation-vue
border-radius: 0; border-radius: 0;
width: calc(100% - var(--body-container-margin) * 1); // was *2 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 // Prevent content overflow on NC <25
@ -325,7 +330,6 @@ body {
#app-navigation-vue { #app-navigation-vue {
border-top-left-radius: var(--body-container-radius); border-top-left-radius: var(--body-container-radius);
border-bottom-left-radius: var(--body-container-radius); border-bottom-left-radius: var(--body-container-radius);
max-width: 250px;
} }
} }