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

7 lines
173 B
TypeScript
Raw Normal View History

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