-
Notifications
You must be signed in to change notification settings - Fork 779
Open
Labels
Description
This was brought up in #13138, but never fully addressed:
@mixin --m() {
@result {
div { color: green; }
}
@result {
span { color: blue; }
}
}What is emitted from the above mixin? We seem to have two choices:
- The last seen
@resultwins wholesale; onlyspan{color:blue}is emitted.- It is consistent with how
@thing foogenerally overwrites a previous@thing fooin CSS. - It is consistent with how
resultworks in@function.
- It is consistent with how
- All
@resultrules "accumulate" to form the output;div{color:green};span{color:blue}is emitted.- It is consistent with what @mirisuzanne expects.
- TODO: Insert argument for this position.
Reactions are currently unavailable