Skip to content

Instantly share code, notes, and snippets.

@tommymarshall
Created March 11, 2015 20:07
Show Gist options
  • Save tommymarshall/d1b14166c1ca094f6203 to your computer and use it in GitHub Desktop.
Save tommymarshall/d1b14166c1ca094f6203 to your computer and use it in GitHub Desktop.
CSStyle, without component.
// 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