prettier/tests/stylefmt/nested-mixin/nested-mixin.css

13 lines
194 B
CSS

@mixin test() {
$values: blue red;
@each $val in $values {
color: $val;
@for $i from 2 through 10 {
background: $i;
}
}
@for $i from 2 through 10 {
color: $i;
}
}