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

Nested declarations are not spec compliant #469

Open
stof opened this issue Sep 15, 2021 · 1 comment
Open

Nested declarations are not spec compliant #469

stof opened this issue Sep 15, 2021 · 1 comment
Labels
spec compliance Issues with compliance to the Sass spec
Milestone

Comments

@stof
Copy link
Member

stof commented Sep 15, 2021

This is about things like that:

a {
  b: {
    c: d;
    e: f;
  }
}

which should produce a CSS like that:

a {
  b-c: d;
  b-e: f;
}
@stof stof added the spec compliance Issues with compliance to the Sass spec label Sep 15, 2021
@stof
Copy link
Member Author

stof commented Jan 3, 2022

The basic feature (described in the issue) works (at least for a single level of nesting). However, it is broken when the inner declarations are generated with a mixin.

@stof stof added this to the 2.0 milestone Jul 27, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
spec compliance Issues with compliance to the Sass spec
Projects
None yet
Development

No branches or pull requests

1 participant