pixsy/node_modules/less/test/less-bom/import-reference-issues/mixin-1968.less

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