Skip to content

Instantly share code, notes, and snippets.

@cimmanon
Created December 4, 2013 18:19
Show Gist options
  • Save cimmanon/7792677 to your computer and use it in GitHub Desktop.
Save cimmanon/7792677 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
%colors {
&.error {
color: red;
}
&.success {
color: green;
}
}
.button {
border-radius: .25em;
@extend %colors;
}
.foo {
@extend %colors.error;
}
.error.button, .foo {
color: red;
}
.success.button {
color: green;
}
.button {
border-radius: .25em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment