Skip to content

Instantly share code, notes, and snippets.

@devarispbrown
Created March 14, 2017 23:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devarispbrown/18a079d8b2038ffec14dc887e67a7b14 to your computer and use it in GitHub Desktop.
Save devarispbrown/18a079d8b2038ffec14dc887e67a7b14 to your computer and use it in GitHub Desktop.
example.sass
$color: red
=my-border($color)
border: 1px solid $color
body
background: $color
+my-border(green)
example.scss
$color: red;
@mixin my-border($color) {
border: 1px solid $color;
}
body {
background: $color;
@include my-border(green);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment