Fix scroll behavior for navigation (#4406)

This commit is contained in:
conico974
2026-07-16 14:21:01 +02:00
committed by GitHub
parent c41cf9c12a
commit 1b571aeaa9
@@ -85,7 +85,9 @@ function scrollToHash(hash: string) {
if (element) {
element.scrollIntoView({
block: 'start',
behavior: 'smooth',
// Looks like there is a bug when using smooth scroll on navigation between pages.
// The browser does not scroll, probably some kind of browser optimization.
behavior: 'instant',
});
return true;
}