Skip to content

Instantly share code, notes, and snippets.

@d2s
Created October 5, 2022 19:46
Show Gist options
  • Save d2s/73ab9ae1308b4e4caf958d2c8d33c0f7 to your computer and use it in GitHub Desktop.
Save d2s/73ab9ae1308b4e4caf958d2c8d33c0f7 to your computer and use it in GitHub Desktop.
Reduced motion for people who prefer not to see animations and transitions.
// Remove all animations and transitions
// for people who prefer not to see them
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment