Skip to content

Instantly share code, notes, and snippets.

@acobster
Last active September 13, 2020 15:19
Show Gist options
  • Save acobster/1888e9d3b4187269d91e75506e13836b to your computer and use it in GitHub Desktop.
Save acobster/1888e9d3b4187269d91e75506e13836b to your computer and use it in GitHub Desktop.
Frontend snippets
/*
* SMOOTH SCROLLING IN PURE CSS
*
* CREDIT: https://twitter.com/zachleat/status/1296852504777457664
* DEMO: https://smooth-scrolling.glitch.me/
*/
@media (prefers-reduced-motion: no-preference) {
html {
scroll-behavior: smooth;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment