Closed thomashigginbotham closed 6 years ago
While running cssom on Twitter Bootstrap's CSS, I received an error and was able to narrow it down to the use of @supports. Here's some sample code that will cause the error.
@supports (transform-style: preserve-3d) { .foo { transform: translate3d(0, 0, 0); } }
Error: Unexpected }
Unexpected }
I created a pull request that fixes this issue.
Fixed in #96.
While running cssom on Twitter Bootstrap's CSS, I received an error and was able to narrow it down to the use of @supports. Here's some sample code that will cause the error.
Error:
Unexpected }