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
After automatic class sorting was applied, the following code:
.facetwp-facet { @apply mb-0 !important; }
... turned into:
.facetwp-facet { @apply !important mb-0; }
which is causing an error.
The text was updated successfully, but these errors were encountered:
I am also getting this issue. Not sure why it is closed.
Before @apply sm:left-1/2 sm:-translate-x-1/2 #{!important};
@apply sm:left-1/2 sm:-translate-x-1/2 #{!important};
After @apply #{!important} sm:left-1/2 sm:-translate-x-1/2;
@apply #{!important} sm:left-1/2 sm:-translate-x-1/2;
Sorry, something went wrong.
!important
@apply
Thanks for reporting! This should be fixed in v0.1.3 👍
v0.1.3
@thenaim Had the same issue, and looked in the source. It explicitly looks for #{!important} in the code, no quotes.
#{!important}
Successfully merging a pull request may close this issue.
After automatic class sorting was applied, the following code:
.facetwp-facet { @apply mb-0 !important; }
... turned into:
.facetwp-facet { @apply !important mb-0; }
which is causing an error.
The text was updated successfully, but these errors were encountered: