pinafore/src/routes/_store/observers/customScrollbarObservers.js

15 lines
438 B
JavaScript

import { store } from '../store'
let theScrollbarStyle = process.browser && document.getElementById('theScrollbarStyle')
export function customScrollbarObservers () {
store.observe('disableCustomScrollbars', disableCustomScrollbars => {
if (!process.browser) {
return
}
// disables or enables the style
theScrollbarStyle.setAttribute('media', disableCustomScrollbars ? 'only x' : 'all')
}, { init: false })
}