I have an SVG, in which some elements are rotated depending on a mediaquery, like this:
@media (max-width: 480px) {
    rect {
        transform: rotate(10deg);
    }
}
The element rotates just fine, but (at least in Chrome) it refuses to go back. Why is that? Other directives, such as fill, work in both direction.
JSFiddle: http://jsfiddle.net/MM3VC/1/
Edit: Whatever caused this bug has been fixed in Chrome. In v79+ (early 2020), the issue is no longer present.
 
     
     
    