You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@medianot all and (hover: hover) and (pointer: fine) {
@media (max-height:1000px) {
body {
font-size:12px;
}
}
}
@media (max-height:1000px) and (max-width:600px) {
body {
background: red;
}
}
As you can see the background:red no longer only happens on devices supporting hover and having a fine pointer.
Expected output
@medianot all and (hover: hover) and (pointer: fine) {
@media (max-height:1000px) {
body {
font-size:12px;
}
}
}
@medianot all and (hover: hover) and (pointer: fine) {
@media (max-height:1000px) and (max-width:600px) {
body {
background: red;
}
}
}
Sass version: 1.54.5 compiled with dart2js 2.17.6
The text was updated successfully, but these errors were encountered:
The outmost media query is dropped when containing the
not
keyword, when nesting three media queries inside each other.Input:
Output:
As you can see the
background:red
no longer only happens on devices supporting hover and having a fine pointer.Expected output
Sass version:
1.54.5 compiled with dart2js 2.17.6
The text was updated successfully, but these errors were encountered: