-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comma-Separated Values #74
Comments
I see that there's a test here verifying that they should be supported... I'm not sure why I'm running into problems here. |
Appears to be an issue with the single quotes - I've been able use commas in media queries. |
I've also just been hit by this. Is there any known work around? |
Well, guys. I can't reproduce this issue. Can you help with debugging? |
My example is almost identical to the original post: using @value fontFamilyValue: foo, bar, baz
body {
font-family: fontFamilyValue;
} Result is: body {
font-family: foo;
} I am reproducing this when using CSS Modules via |
I'm seeing problems when trying to use an
@value
with afont-family
definition. For example:Results in:
A longer
@value
definition, such asresults in the same output.
Possibly related to #68 (issues with comma-separated media queries) but I'm not sure.
The text was updated successfully, but these errors were encountered: