Closed
Description
Hi, was this change intentional or is it a bug? Probably it's not a bug, but I just want to be sure.
input.scss
.red-icon {
color: #e50026;
}
a.nested:before {
&.error {
@extend .red-icon;
}
}
Actual results
.red-icon, a.nested:before.error {
color: #e50026; }
dart sass also have this behavior
in this case <div class="red-icon">text</div>
isn't red.
Expected result
.red-icon, a.nested.error:before {
color: #e50026; }