<===> input.scss
.test .testa {
@at-root #{"%foo"} {
color: red;
}
@extend %foo;
}
<===> output.css
.test .testa {
color: red;
}
<===> input.scss
.test .testa {
@at-root #{"%foo"} {
color: red;
}
@extend %foo;
}
<===> output.css
.test .testa {
color: red;
}