pieces icon indicating copy to clipboard operation
pieces copied to clipboard

@supports' condition is becoming "undefined" in the compiled result

Open ianthedev opened this issue 5 years ago • 0 comments

The following CSS code:

@supports (display: grid) {
    main {
        display: grid;
    }
}

is being compiled to:

@supports undefined{main{display:grid;}}

ianthedev avatar Apr 20 '19 08:04 ianthedev