-
Notifications
You must be signed in to change notification settings - Fork 22
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
Issues with CSS variables #7
Comments
Hello @larsenwork , Moreover I would like to point out that I have the same exact problem when using postcss-modules-values. Instead postcss-modules-values-replace seems to fix this problem. I'm not sure if this helps you, but you might find this information useful. Thanks for your time in advance |
I could add support for css-variables — it would be a bit clunky syntax using |
I too would love to be able to pass On a similar note, I thought it would be especially dope to be able to pass dynamically sensed colors (like these) to easing-gradients to make super smooth gradients based on the page's imagery. That works, and it looks great! |
Confirm, this doesn't work with variables. Frustrating :( |
Hi there,
Great plugin, but it doesn't seem to work with CSS variables.
// Works
background: linear-gradient(to right, green, ease, red);
// Fails
:root {
--red: red;
--green: green;
}
background: linear-gradient(to right, var(--green), ease, var(--red));
The text was updated successfully, but these errors were encountered: