7 lines
184 B
SCSS
7 lines
184 B
SCSS
![]() |
// Smooth scrolling by default
|
||
|
html { scroll-behavior: smooth; }
|
||
|
// But let people override it
|
||
|
@media screen and (prefers-reduced-motion: reduce) {
|
||
|
html { scroll-behavior: auto; }
|
||
|
}
|