Created
March 11, 2015 20:07
-
-
Save tommymarshall/d1b14166c1ca094f6203 to your computer and use it in GitHub Desktop.
CSStyle, without component.
This file contains hidden or 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
// CSStyle | |
@include component(button) { | |
background: red; | |
@include option(blue) { | |
color: blue; | |
} | |
} | |
// Without component | |
.button { | |
background: red; | |
@include option(blue) { | |
color: blue; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment