const navRef = useRef(null) const onToggleNav = () => { setNavShow((status) => { if (status) { document.body.style.overflow = 'auto' enableBodyScroll(navRef.current) } else { // Prevent scrolling document.body.style.overflow = 'hidden' disableBodyScroll(navRef.current) } return...
<NavBar /> <main class="grid h-screen w-screen grid-cols-1 grid-rows-2 gap-5"> <p id="nerf-this">nerf this.</p> <SummonerSearch /> </main> <style lang="postcss"> #nerf-this { @apply text-dom-content row-start-1 select-none self-end text-center text-7xl font-black; }...