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
When using the class ui-not-invalid:bg-red for example the following css is generated:
ui-not-invalid:bg-red
.ui-not-invalid\:bg-red[data]:not([data-invalid]), :where([data]:not([data-invalid])) .ui-not-invalid\:bg-red:not(data) { --un-bg-opacity:1; background-color:rgb(248 113 113 / var(--un-bg-opacity)); }
For ui-not-selected:bg-red it looks like this:
ui-not-selected:bg-red
.ui-not-selected\:bg-red[data]:not([data-selected]), :where([data]:not([data-selected])) .ui-not-selected\:bg-red:not(data) { --un-bg-opacity:1; background-color:rgb(248 113 113 / var(--un-bg-opacity)); }
These selectors use [data] in some places, which does not select the correct element.
[data]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using the class
ui-not-invalid:bg-red
for example the following css is generated:For
ui-not-selected:bg-red
it looks like this:These selectors use
[data]
in some places, which does not select the correct element.The text was updated successfully, but these errors were encountered: