Open
Description
I'm seeing problems when trying to use an @value
with a font-family
definition. For example:
@value my-font-fam: 'Some-Custom-Font', Helvetica;
.foo {
font-family: my-font-fam;
}
Results in:
.foo {
font-family: 'Some-Custom-Font';
}
A longer @value
definition, such as
@value my-font-fam: 'Some-Custom-Font', Helvetica, Arial, 'Lucida Granda', sans-serif;
results in the same output.
Possibly related to #68 (issues with comma-separated media queries) but I'm not sure.