We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, having an issue with vars that are 'styled' on multiple lines (on latest commit dd jan 10, 2022):
This works correct:
:root { --my-color: 255, 0, 0; --my-opacity: 210; } body { background-color: rgba(var(--my-color), var(--my-opacity)) !important; }
it renders to:
but this doesn't work correct:
:root { --my-color: 255, 0, 0; --my-opacity: 210; } body { background-color: rgba( var(--my-color), var(--my-opacity) ) !important; }
:root { --my-color: 255, 0, 0; --my-opacity: 210; } body {}
This is only the case when using vars, as the following is styled the same and works correct:
:root { --my-color: 255, 0, 0; --my-opacity: 210; } body { background-color: rgba( 255, 234, 231, 210 ) !important; }
this renders to:
:root { --my-color: 255, 0, 0; --my-opacity: 210; } body { background-color: rgba(255, 234, 231, 210) !important; }
The text was updated successfully, but these errors were encountered:
Fixed by #202
Sorry, something went wrong.
No branches or pull requests
Hi,
having an issue with vars that are 'styled' on multiple lines (on latest commit dd jan 10, 2022):
This works correct:
it renders to:
but this doesn't work correct:
it renders to:
This is only the case when using vars, as the following is styled the same and works correct:
this renders to:
The text was updated successfully, but these errors were encountered: