Commit 2dd4cf5c authored by NGPixel's avatar NGPixel

fix: sidebar nav incorrect scroll color in light mode

parent 7306fabd
......@@ -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()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment