1
Fork 0

make space on the top when scrolling to elements via URL anchors #

This commit is contained in:
リキ萌 2025-01-11 00:15:29 +01:00
parent 74baa61122
commit c1cf9e0812

View file

@ -33,6 +33,10 @@ html {
--virtual-space-ratio: 1.75;
height: calc(100% * var(--virtual-space-ratio));
/* Leave a bunch of space at the top when scrolling to elements.
I'm honestly not sure why this is needed on <html> and not the scrolled-to element... */
scroll-padding-top: 10vh;
}
body {