mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-23 01:13:49 +01:00
7 lines
173 B
TypeScript
7 lines
173 B
TypeScript
export function scrollTo(qs: string) {
|
|
if (import.meta.client) {
|
|
document.querySelector(qs)?.scrollIntoView({
|
|
behavior: 'smooth',
|
|
});
|
|
}
|
|
} |