mirror of
https://github.com/swc-project/swc.git
synced 2025-01-01 18:16:09 +03:00
32 lines
346 B
CSS
32 lines
346 B
CSS
|
.foo {
|
||
|
color: red;
|
||
|
@nest & > .bar {
|
||
|
color: blue;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.foo {
|
||
|
color: red;
|
||
|
@nest .parent & {
|
||
|
color: blue;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.foo {
|
||
|
color: red;
|
||
|
@nest :not(&) {
|
||
|
color: blue;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.foo {
|
||
|
color: blue;
|
||
|
|
||
|
@nest .bar & {
|
||
|
color: red;
|
||
|
&.baz {
|
||
|
color: green;
|
||
|
}
|
||
|
}
|
||
|
}
|