2017-09-13 07:52:34 +02:00

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;
}
}