Skip to content

Instantly share code, notes, and snippets.

@andrewplummer
Last active May 30, 2016 05:12
Show Gist options
  • Save andrewplummer/515e59d4991af725d464f25e56175030 to your computer and use it in GitHub Desktop.
Save andrewplummer/515e59d4991af725d464f25e56175030 to your computer and use it in GitHub Desktop.
Sass inheriting nested.
// ----
// Sass (v3.4.21)
// Compass (v1.0.3)
// ----
body p .foo {
color: red;
}
.bar {
@extend .foo;
}
body p .foo, body p .bar {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment