Open Mangatt opened 4 years ago
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?
Hey @Mangatt, I am guessing https://github.com/MadLittleMods/postcss-css-variables/pull/112 will probably solve your problem. Stay tuned there for progress
When using rgba fallbacks for CSS variables, output is wrong:
is transformed into (notice two parentheses on the right):
Any way around that?