Reviewed-on: #1 Co-authored-by: Matthew L McPeak <m.mcpeak98@icloud.com> Co-committed-by: Matthew L McPeak <m.mcpeak98@icloud.com>
6 lines
221 B
TypeScript
6 lines
221 B
TypeScript
export function scrollToSection(id: string) {
|
|
const el = document.getElementById(id)
|
|
if (!el) return
|
|
const top = el.getBoundingClientRect().top + window.scrollY - 68
|
|
window.scrollTo({ top, behavior: 'smooth' })
|
|
}
|