<===> input.scss
@media all and (min-width: 100px) {
a { b: c }
@import "https://example.org";
}
<===> output.css
@media all and (min-width: 100px) {
a {
b: c;
}
@import "https://example.org";
}
<===> input.scss
@media all and (min-width: 100px) {
a { b: c }
@import "https://example.org";
}
<===> output.css
@media all and (min-width: 100px) {
a {
b: c;
}
@import "https://example.org";
}