-
-
Notifications
You must be signed in to change notification settings - Fork 38
Some media queries are removed with keepAtRules #691
Copy link
Copy link
Open
Description
This gets removed (should work too)
@media not all and (min-width:640px) {
.container {
width: 100% !important;
min-width: 100% !important
}
}
@media not all and (width >= 640px) {
.container {
width: 100% !important;
min-width: 100% !important
}
}This works
@media (max-width:640px) {
.container {
width: 100% !important;
min-width: 100% !important
}
}
@media (width <= 640px) {
.container {
width: 100% !important;
min-width: 100% !important
}
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels