Urara-Blog/node_modules/.pnpm-store/v3/files/fe/dd60eab8d73e38a71f355b5cfcb99c11cb52c60edaa989b53b81e4540bd17eca31c4d7c6d8cb22d712ecfd48e2ff06e6c973b276753d8ff284bf0055d761a5
2022-08-14 01:14:53 +08:00

20 lines
708 B
Text

/*
* 1. Remove animations when motion is reduced (opinionated).
* 2. Remove fixed background attachments when motion is reduced (opinionated).
* 3. Remove timed scrolling behaviors when motion is reduced (opinionated).
* 4. Remove transitions when motion is reduced (opinionated).
*/
@media (prefers-reduced-motion: reduce) {
*,
::before,
::after {
animation-delay: -1ms !important; /* 1 */
animation-duration: 1ms !important; /* 1 */
animation-iteration-count: 1 !important; /* 1 */
background-attachment: initial !important; /* 2 */
scroll-behavior: auto !important; /* 3 */
transition-delay: 0s !important; /* 4 */
transition-duration: 0s !important; /* 4 */
}
}