9 lines
171 B
Plaintext
9 lines
171 B
Plaintext
|
.mixin-no-parent-selector() {
|
||
|
background-color: red;
|
||
|
}
|
||
|
.mixin-with-parent-selector() {
|
||
|
&:first-child{ // USING AN & SELECTOR HERE
|
||
|
background-color: blue;
|
||
|
}
|
||
|
}
|