Skip to content
New issue

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 support for container-* #191356

Closed
Trinovantes opened this issue Aug 26, 2023 · 1 comment
Closed

Add scss support for container-* #191356

Trinovantes opened this issue Aug 26, 2023 · 1 comment
Assignees

Comments

@Trinovantes
Copy link

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:

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;
        }
    }
}
@aeschli
Copy link
Contributor

aeschli commented Aug 28, 2023

duplicate of #170589

@aeschli aeschli closed this as completed Aug 28, 2023
@github-actions github-actions bot locked and limited conversation to collaborators Oct 12, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants