mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 19:52:21 +03:00
35 lines
554 B
CSS
35 lines
554 B
CSS
|
.class {
|
||
|
&.foo {
|
||
|
-webkit-appearance: auto;
|
||
|
appearance: auto;
|
||
|
}
|
||
|
@media all {
|
||
|
-webkit-appearance: auto;
|
||
|
appearance: auto;
|
||
|
}
|
||
|
}
|
||
|
@media (min-width: 50em) {
|
||
|
.foo {
|
||
|
-webkit-appearance: auto;
|
||
|
appearance: auto;
|
||
|
}
|
||
|
@supports (flex-wrap: wrap) {
|
||
|
.foo {
|
||
|
-webkit-appearance: auto;
|
||
|
appearance: auto;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
@supports (flex-wrap: wrap) {
|
||
|
.foo {
|
||
|
-webkit-appearance: auto;
|
||
|
appearance: auto;
|
||
|
}
|
||
|
@media (min-width: 50em) {
|
||
|
.foo {
|
||
|
-webkit-appearance: auto;
|
||
|
appearance: auto;
|
||
|
}
|
||
|
}
|
||
|
}
|