Force pseudo-nesting with parent selector
mrleblanc101 opened this issue · 0 comments
mrleblanc101 commented
Force pseudo-nesting rule cause error when using parent selector.
I think this rule should ignore line with parent selector as it's impossible to use nesting in that case as far as I know.
Correct code that cause error:
.admission-title {
color: blue;
.admission-item:nth-child(3n - 1) & {
color: red
}
}