Browse Source

fix: sidebar nav incorrect scroll color in light mode

pull/1783/head 2.3.71
NGPixel 5 years ago
parent
commit
2dd4cf5c08
1 changed files with 3 additions and 1 deletions
  1. 4
      client/themes/default/components/page.vue

4
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()

Loading…
Cancel
Save