We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f38f4e commit 29155c9Copy full SHA for 29155c9
test/cases/media.many.css
@@ -0,0 +1,8 @@
1
+
2
+@media screen and (max-width: 481px)
3
+ .collection.two,
4
+ .collection.three
5
+ width: 400px
6
+ background: red
7
+ .item
8
+ margin-left: 0
test/cases/media.many.out.css
@@ -0,0 +1,11 @@
+@media screen and (max-width: 481px) {
+ .collection.two .item,
+ .collection.three .item {
+ margin-left: 0;
+ }
+ .collection.three {
+ width: 400px;
9
+ background: red;
10
11
+}
0 commit comments