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
@layer
@layer foo { @keyframes slide-left { from { width: 200px; } 100% { width: 500px; } } }
esbuild output:
@layer foo{@keyframes slide-left {from {width: 200px;} 100% {width: 500px;}}}
No problem when there is no @layer. https://caniuse.com/mdn-css_at-rules_layer
@layer foo{@keyframes slide-left{0%{width:200px}to{width:0}}}
The text was updated successfully, but these errors were encountered:
This is a new CSS rule so esbuild doesn't know about it yet. I can add basic support for it.
Sorry, something went wrong.
2734bbf
No branches or pull requests
esbuild output:
Expectation
No problem when there is no
@layer
. https://caniuse.com/mdn-css_at-rules_layerThe text was updated successfully, but these errors were encountered: