Closed Cerdic closed 5 years ago
Fix https://github.com/leafo/scssphp/issues/493: assign lines in @support (or others) directives have to be wrapped in a block before compilation
@support
There is a small change on the outpout of
@foo { rule { a: b; } a: b; }
which was
@foo { a: b; rule { a: b; } }
and is now
which looks like not being worst: at least the order is kept, even if the result is however not valid in css
Fix https://github.com/leafo/scssphp/issues/493: assign lines in
@support
(or others) directives have to be wrapped in a block before compilationThere is a small change on the outpout of
which was
and is now
which looks like not being worst: at least the order is kept, even if the result is however not valid in css