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
while minifying css, we encountered another case where invalid css could stand to be handled a bit better
in this case, given...
@keyframes slidein { from { transform: translateX(0%); } to { transform: translateX(100%); } .invalid } @keyframes other { from { transform: translateX(100%); } to { transform: translateX(0%); } }
minifying results in the following with the second keyframe being "merged" into the first and semicolons being added...
@keyframes slidein{0%{transform:translate(0)}to{transform:translate(100%)}invalid,other{from {transform: translateX(100%);};to {transform: translateX(0%);}}}
The text was updated successfully, but these errors were encountered:
cccc6c6
No branches or pull requests
while minifying css, we encountered another case where invalid css could stand to be handled a bit better
in this case, given...
minifying results in the following with the second keyframe being "merged" into the first and semicolons being added...
The text was updated successfully, but these errors were encountered: