Disable placeholder animation when prefers-reduced-motion is set (https://github.com/woocommerce/woocommerce-admin/pull/2645)
This commit is contained in:
parent
34e91de4ce
commit
acc4ea7e4d
|
@ -26,6 +26,10 @@
|
||||||
&::after {
|
&::after {
|
||||||
content: '\00a0';
|
content: '\00a0';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (prefers-reduced-motion: reduce) {
|
||||||
|
animation: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Adds animation to transforms
|
// Adds animation to transforms
|
||||||
|
|
Loading…
Reference in New Issue