Created
February 5, 2015 04:19
-
-
Save seven-phases-max/26a3f76d3d2aaad33cf1 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
#foo { | |
// we even put our mixins into namespace to avoid any | |
// possible naming conflicts for our shared variables | |
@primary: red; | |
.some-button() { | |
.button { | |
color: @primary; | |
} | |
} | |
.another-button() { | |
.button { | |
color: (#fff - @primary); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment