mirror of
https://github.com/swc-project/swc.git
synced 2024-12-28 08:04:43 +03:00
13 lines
171 B
CSS
13 lines
171 B
CSS
.class {
|
|
color: red;
|
|
& test;
|
|
background: red
|
|
}
|
|
|
|
article {
|
|
color: green;
|
|
& { color: blue; }
|
|
color: red;
|
|
&.foo { color: yellow; } /* valid! */
|
|
}
|