webcoreui
Version:
UI component and template library for Astro, Svelte, and React apps styled with Sass.
14 lines (12 loc) • 425 B
text/typescript
export const bodyFreeze = (freeze = true) => {
const scrollbarWidth = window.innerWidth - document.body.clientWidth
if (freeze) {
document.body.style.paddingRight = `${scrollbarWidth}px`
document.body.style.overflow = 'hidden'
} else {
setTimeout(() => {
document.body.style.paddingRight = ''
document.body.style.overflow = ''
}, 300)
}
}