Skip to content

Instantly share code, notes, and snippets.

@mwisnicki
Created February 23, 2014 13:45
Show Gist options
  • Save mwisnicki/9171713 to your computer and use it in GitHub Desktop.
Save mwisnicki/9171713 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.5)
// Compass (v1.0.0.alpha.18)
// ----
@mixin mytheme {
button.cool {
background: blue;
}
button.cooler {
@extend button.cool;
border: 1px solid blue;
}
}
.mytheme {
@include mytheme;
}
.mytheme button.cool, .mytheme button.cooler {
background: blue;
}
.mytheme button.cooler {
border: 1px solid blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment