Squarespace / less-compiler

Less compiler in Java
Apache License 2.0
19 stars 9 forks source link

CSS parsing issue #3

Closed tjmcewan closed 4 years ago

tjmcewan commented 6 years ago

Howdy, we're hitting an issue parsing CSS:

11036     @media screen and (min-width: 0\0) {
       .................................^

SyntaxError INCOMPLETE_PARSE Unable to complete parse.

Can you take a look please?

phensley commented 6 years ago

You can escape the 0\0 string using the tilde syntax:

@media screen and (min-width: ~'0\0') {
  #elem { width: 100%; }
}
phensley commented 4 years ago

Closing platform config issue.