vaiops/disable-animations.css

9 lines
182 B
CSS
Raw Normal View History

2021-12-09 08:16:56 +00:00
*, :before, :after {
/*CSS transitions*/
transition-property: none !important;
/*CSS transforms*/
transform: none !important;
/*CSS animations*/
animation: none !important;
}