Open
Description
I discovered this while using zola getzola/zola#2762
But I also reproduced this with grass manually
If you define a placeholder in a separate file
placeholders.scss
%awesome {
padding-left: 0;
}
And try to extend them in a different file
main.scss
@use 'placeholders';
.nav {
@extend %awesome;
display: flex;
flex-wrap: wrap;
list-style: none;
}
dart-sass produces the following css
.nav {
padding-left: 0;
}
.nav {
display: flex;
flex-wrap: wrap;
list-style: none;
}
However grass produces
.nav {
display: flex;
flex-wrap: wrap;
list-style: none;
}
Metadata
Assignees
Labels
No labels
Activity