Created
November 10, 2014 16:05
-
-
Save bleuebuzz/ed83f656202b045b3282 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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.7) | |
// Compass (v1.0.1) | |
// ---- | |
%placeholder { | |
foo: bar; | |
&:first-child { | |
first: child; | |
} | |
} | |
.class { | |
@extend %placeholder; | |
&.sub-class { | |
@extend %placeholder; // no output, but I may need this specificity | |
} | |
} |
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
.class, .class.sub-class { | |
foo: bar; | |
} | |
.class:first-child { | |
first: child; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment