UNPKG

mytril

Version:

Mytril Svelte library component for rapidly building modern websites based on Svelte and Sveltekit

10 lines (9 loc) 252 B
import { BROWSER } from 'esm-env'; export function disabledScroll(state) { if (BROWSER) { if (state) document.body.classList.add('no-scroll'); if (!state) document.body.classList.remove('no-scroll'); } }