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 use TailwindCSS. With version 5.0.1 I got with this code
.apply { div { @apply fixed lg:static; } } .screen { @apply fixed; div { @screen lg { @apply static; } } }
this CSS:
.apply div { position: fixed; } .screen { position: fixed; } @media (min-width: 1024px) { .apply div { position: static; } .screen div { position: static } }
but since 5.0.2 and up, I'll get this CSS:
.apply div { position: fixed; } .screen { position: fixed } @media (min-width: 1024px) { .apply { div { position: static; } } div { position: static } }
The text was updated successfully, but these errors were encountered:
📌 Pin postcss-nested to 5.0.1
0fb9aba
postcss/postcss-nested#107
Duplicate #106
Short answer: we do not have resources for now. You can send PR or help us on OpenCollective.
Sorry, something went wrong.
The issue was because of this issue here: yunusga/postcss-sort-media-queries#31
But with release 3.0, this is fixed: https://github.com/yunusga/postcss-sort-media-queries/releases/tag/v3.0.0
No branches or pull requests
I use TailwindCSS. With version 5.0.1 I got with this code
this CSS:
but since 5.0.2 and up, I'll get this CSS:
The text was updated successfully, but these errors were encountered: