-
-
Notifications
You must be signed in to change notification settings - Fork 25
Open
Description
Take the following HTML/CSS (JSFiddle):
<div class="colorchange"></div>.colorchange {
width: 200px;
height: 200px;
background-color: #ff0000;
}
@media screen and ((max-width: 500px) or (max-height: 500px)) {
.colorchange {
background-color: #00ffff;
}
}When I run something similar to the above through jekyll-minifier, the media query gets transformed to:
@media screen and ((max-width:500px) or(max-height:500px)){Note the missing space after the or - turns out that space is necessary for the query to work properly. (JSFiddle - no matter the size of the output pane, the box will always be red.)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels