瀏覽代碼

fix: sidebar nav incorrect scroll color in light mode

NGPixel 5 年之前
父節點
當前提交
2dd4cf5c08
共有 1 個文件被更改,包括 3 次插入1 次删除
  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()