Last active
October 8, 2024 15:58
-
-
Save itsmattsoria/0715ff2e8cf301a107c8f043a987d617 to your computer and use it in GitHub Desktop.
Disable transitions when prefers-reduced-motion is enabled.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Remove animations and transitions for people who prefer not to see them */ | |
@media screen and (prefers-reduced-motion: reduce), (update: slow) { | |
* { | |
background-attachment: initial !important; | |
animation-duration: 0.001ms !important; | |
animation-iteration-count: 1 !important; | |
transition-duration: 0.001ms !important; | |
scroll-behavior: auto !important; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment