Skip to content

Instantly share code, notes, and snippets.

@zastrow
Created January 14, 2021 17:42
Show Gist options
  • Save zastrow/adbab3c59210a33dc3627e0a001e2228 to your computer and use it in GitHub Desktop.
Save zastrow/adbab3c59210a33dc3627e0a001e2228 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
$font-stack: sytem-ui, sans-serif;
@mixin font($override:null) {
font-family: $font-stack $override;
}
.my-class {
@include font;
}
.my-override {
@include font(!important);
}
.my-class {
font-family: sytem-ui, sans-serif;
}
.my-override {
font-family: sytem-ui, sans-serif !important;
}
{
"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