jointrashposs/assets/js/scroll-to/index.ts

7 lines
169 B
TypeScript
Raw Normal View History

2023-07-08 19:23:27 +02:00
export function scrollTo(qs: string) {
if (process.client) {
document.querySelector(qs)?.scrollIntoView({
behavior: 'smooth',
});
}
}