futursolo / stylist-rs

A CSS-in-Rust styling solution for WebAssembly Applications
https://crates.io/crates/stylist
MIT License
370 stars 22 forks source link

@media panics if it's not at end of a style string #1

Closed futursolo closed 3 years ago

futursolo commented 3 years ago

The following style will not be parsed properly:

@media screen and (max-width: 300px) {
    width: 100%;
}

.other-class {
    color: black;
}