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
All browsers listed in MDN now supports CSS container. When I use it in svelte, it gives warning in the language server & svelte-check.
<main> <div>Content</div> </main> <style> main { container-type: inline-size; /* this gives warning */ } div { background: var(--bg); color: white; --bg: red; } @container (width > 728px) { /* this also gives warning */ div { --bg: blue; } } </style>
No warning.
svelte-language-server, svelte-check
The text was updated successfully, but these errors were encountered:
Closing as duplicate of #1888. Let's keep all the container-related stuff in that issue.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
All browsers listed in MDN now supports CSS container. When I use it in svelte, it gives warning in the language server & svelte-check.
Reproduction
Expected behaviour
No warning.
System Info
Which package is the issue about?
svelte-language-server, svelte-check
Additional Information, eg. Screenshots
The text was updated successfully, but these errors were encountered: