quicint
Version:
Quick initialize HTML5 EJS Boilerplate
16 lines (11 loc) • 335 B
text/typescript
import GetScrollbarWidth from './getScrollbarWidth'
const BgScrollStop = (isStop = true): void => {
document.body.style.paddingRight = isStop ? `${GetScrollbarWidth()}px` : ''
if (isStop) {
document.body.style.overflow = 'hidden'
}
if (!isStop) {
document.body.style.overflow = ''
}
}
export default BgScrollStop