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
@keyframes
When defining multiple identical @keyframes, all definitions except the first one are empty.
Input file:
@keyframes pulse { 50% { opacity: 0.5; } } @keyframes pulse { 50% { opacity: 0.5; } }
Output file:
@keyframes pulse { 50% { opacity: 0.5; } } @keyframes pulse { }
postcss
8.4.7
postcss-combine-duplicated-selectors
10.0.3
The text was updated successfully, but these errors were encountered:
Pull requests are welcome!
Sorry, something went wrong.
fix(client/website/postcss): temporary disable `postcss-combine-dupli…
569e0db
…cated-selectors` plugin due to [this bug](ChristianMurphy/postcss-combine-duplicated-selectors#834)
No branches or pull requests
Description
When defining multiple identical
@keyframes
, all definitions except the first one are empty.Reproduction
Input file:
Output file:
Environment
postcss
:8.4.7
postcss-combine-duplicated-selectors
:10.0.3
The text was updated successfully, but these errors were encountered: