Core

/client/src/menu.ts (155 B)

1
2
3
4
5
6
7
import {els} from "./dom";

export function menuInit() {
for (const n of els(".menu-container .final")) {
n.scrollIntoView({block: "center"});
}
}