<===> foo.scss
.test-hello {
color: red;
}
.test-world {
@extend .test-hello;
}
<===> input.scss
.theme {
@import "foo.scss";
}
<===> output.css
.theme .test-hello, .theme .test-world {
color: red;
}
<===> foo.scss
.test-hello {
color: red;
}
.test-world {
@extend .test-hello;
}
<===> input.scss
.theme {
@import "foo.scss";
}
<===> output.css
.theme .test-hello, .theme .test-world {
color: red;
}