Skip to content

Commit

Permalink
fix: sidebar nav incorrect scroll color in light mode
Browse files Browse the repository at this point in the history
  • Loading branch information
NGPixel committed Apr 25, 2020
1 parent 7306fab commit 2dd4cf5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client/themes/default/components/page.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 2dd4cf5

Please sign in to comment.