How would I make it so a CSS transition doesn't work inside a media-query, or in any other case? For example:
@media (min-width: 200px) {
element {
transition: width 1s;
}
}
@media (min-width: 600px) {
element {
transition: none; // SET TO NO TRANSITION
}
}

