Explorar o código

fix: sidebar nav incorrect scroll color in light mode

NGPixel %!s(int64=5) %!d(string=hai) anos
pai
achega
2dd4cf5c08
Modificáronse 1 ficheiros con 3 adicións e 1 borrados
  1. 3 1
      client/themes/default/components/page.vue

+ 3 - 1
client/themes/default/components/page.vue

@@ -429,7 +429,9 @@ export default {
     this.$store.set('page/mode', 'view')
   },
   mounted () {
-    this.scrollStyle.bar.background = '#424242'
+    if (this.$vuetify.theme.dark) {
+      this.scrollStyle.bar.background = '#424242'
+    }
 
     // -> Check side navigation visibility
     this.handleSideNavVisibility()