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
Add scss highlight support for container-* properties and @container query. These are now supported on most modern browsers.
container-*
@container
https://developer.mozilla.org/en-US/docs/Web/CSS/container#browser_compatibility
This currently gives scss(unknownProperties) warning:
scss(unknownProperties)
article{ container-type: inline-size; .grid{ @container (min-width: 400px) { grid-template-columns: 1fr 1fr; } @container (min-width: 600px) { grid-template-columns: 1fr 1fr 1fr; } } }
The text was updated successfully, but these errors were encountered:
duplicate of #170589
Sorry, something went wrong.
aeschli
No branches or pull requests
Add scss highlight support for
container-*
properties and@container
query. These are now supported on most modern browsers.https://developer.mozilla.org/en-US/docs/Web/CSS/container#browser_compatibility
This currently gives
scss(unknownProperties)
warning:The text was updated successfully, but these errors were encountered: