pieces
pieces copied to clipboard
@supports' condition is becoming "undefined" in the compiled result
The following CSS code:
@supports (display: grid) {
main {
display: grid;
}
}
is being compiled to:
@supports undefined{main{display:grid;}}