Last active
August 29, 2015 14:05
-
-
Save TJkrusinski/8a4e371fdecbd03117a7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// contrived example | |
$box-height: 30px; | |
$box-width: 30px; | |
// optional args | |
@mixin box-me-bro ($width: $box-width, $height: $box-height) { | |
width: $width; | |
height: $height; | |
} | |
// using it | |
div { | |
@include box-me-bro() | |
} | |
main { | |
@include box-me-bro(50px, 90px) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment