Parenthesis problem
Opened this issue · 1 comments
Mangatt commented
When using rgba fallbacks for CSS variables, output is wrong:
:root{
--color: rgba(0,0,0,0.5);
}
p{
color: var(--color, rgba(0,0,0,0.5));
}
is transformed into (notice two parentheses on the right):
p{
color: rgba(0,0,0,0.5));
}
Any way around that?
MadLittleMods commented