sass / sassc

libsass command line driver
Other
784 stars 131 forks source link

Allow for more complex at-media query #277

Closed imme-emosol closed 3 years ago

imme-emosol commented 3 years ago

For instance, using: @media (prefers-color-scheme: light) or (prefers-color-scheme: no-preference) { results in:

SassC::SyntaxError: Error: Invalid CSS after "...-scheme: light)": expected "{", was "or (prefers-color-s"
         on line X:Y of Z.css.scss
>> @media (prefers-color-scheme: light) or (prefers-color-scheme: no-preference
   -----------------------------------^
mgreter commented 3 years ago

There is no "or" operator in the css spec, so your css is invalid, please use a comma! https://css-tricks.com/logic-in-media-queries/

imme-emosol commented 3 years ago

Well that's embarrassing.. Thanks and sorry :|