vaiops/disable-animations.css
2021-12-09 00:16:56 -08:00

9 lines
182 B
CSS

*, :before, :after {
/*CSS transitions*/
transition-property: none !important;
/*CSS transforms*/
transform: none !important;
/*CSS animations*/
animation: none !important;
}