1
0
Fork 0
freesewing/packages/css-theme/src/_scroll.scss

7 lines
184 B
SCSS
Raw Normal View History

2019-05-05 17:06:22 +02:00
// Smooth scrolling by default
html { scroll-behavior: smooth; }
// But let people override it
@media screen and (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
}