Last active
May 30, 2016 05:12
-
-
Save andrewplummer/515e59d4991af725d464f25e56175030 to your computer and use it in GitHub Desktop.
Sass inheriting nested.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.4.21) | |
// Compass (v1.0.3) | |
// ---- | |
body p .foo { | |
color: red; | |
} | |
.bar { | |
@extend .foo; | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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