Skip to content

Instantly share code, notes, and snippets.

@hernaneg350
Created August 1, 2014 05:05
Show Gist options
  • Save hernaneg350/58c1312c5c6738352c86 to your computer and use it in GitHub Desktop.
Save hernaneg350/58c1312c5c6738352c86 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.12)
// Compass (v1.0.0.alpha.21)
// ----
%bar {
color: green;
}
.bar {
@extend %bar;
}
.foo {
%bar {
color: red;
}
}
.baz {
.qux {
@extend %bar;
}
}
.bar, .baz .qux {
color: green;
}
.foo .bar, .foo .baz .qux, .baz .foo .qux {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment