UNPKG

swingset

Version:

drop-in component library and documentation pages for next.js

8 lines (6 loc) 254 B
export default function scrollToElement(id: string) { const element = document.querySelector(`#${id}`) if (!element) return const top = element.getBoundingClientRect().top + window.pageYOffset - 10 window.scrollTo({ top, behavior: 'smooth' }) }