wow
Some checks failed
/ print-content (push) Failing after 1m43s

This commit is contained in:
암냥 2026-09-09 14:34:33 +09:00
commit dd23a3c76e
9 changed files with 257 additions and 108 deletions

View file

@ -80,3 +80,37 @@
--mono-filter: invert(1);
}
}
html {
scroll-behavior: smooth;
scroll-padding-top: 64px;
}
html::-webkit-scrollbar {
width: 19px;
height: 11px;
}
html::-webkit-scrollbar-track {
background: transparent;
}
html::-webkit-scrollbar-thumb {
background: var(--scrollbar);
border: 5px solid var(--background);
border-radius: 16px;
}
html::-webkit-scrollbar-thumb:hover {
background: var(--scrollbar-hover);
}
html {
scrollbar-color: var(--scrollbar) var(--background);
}
@media (prefers-reduced-motion: reduce) {
html {
scroll-behavior: auto;
}
}