<===> input.scss
.foo {
border: {
right: 10px solid /*here is a comment*/;
}
}
<===> output.css
.foo {
border-right: 10px solid;
}
<===> input.scss
.foo {
border: {
right: 10px solid /*here is a comment*/;
}
}
<===> output.css
.foo {
border-right: 10px solid;
}