Skip to content

Instantly share code, notes, and snippets.

@justusromijn
Created February 1, 2021 16:37
Show Gist options
  • Save justusromijn/3214896a53e65a2f6c6272af1ee8f77f to your computer and use it in GitHub Desktop.
Save justusromijn/3214896a53e65a2f6c6272af1ee8f77f to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
@mixin some-mixin() {
@include button();
text-decoration: none;
&--primary {
color: blue;
@extend %primary;
}
}
@mixin button() {
font-family: Arial;
}
%primary {
color: red;
}
.button {
@include some-mixin();
}
.button--primary {
color: red;
}
.button {
font-family: Arial;
text-decoration: none;
}
.button--primary {
color: blue;
}
{
"sass": {
"compiler": "dart-sass/1.26.11",
"extensions": {},
"syntax": "SCSS",
"outputStyle": "expanded"
},
"autoprefixer": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment