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
i want to do something like bg-[--my-var]
expected output
.bg-\[--my-var\] { background-color: var(--my-var); }
actual output
.bg-\[--my-var\] { }
I also tried doing bg-[var(--my-var)]
bg-[var(--my-var)]
but ended up with the output:
.bg-\[var(--my-var\)] { background-image: var(--my-var); }
which seems like a bug
support vars like tailwind css: https://tailwindcss.com/docs/adding-custom-styles#using-arbitrary-values
No response
would make my life easier
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the problem
i want to do something like bg-[--my-var]
expected output
actual output
I also tried doing
bg-[var(--my-var)]
but ended up with the output:
which seems like a bug
Describe the proposed solution
support vars like tailwind css:
https://tailwindcss.com/docs/adding-custom-styles#using-arbitrary-values
Alternatives considered
No response
Importance
would make my life easier
Additional Information
No response
The text was updated successfully, but these errors were encountered: