Created
August 1, 2014 05:19
-
-
Save hernaneg350/d17b3970db640a400001 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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.3.12) | |
// Compass (v1.0.0.alpha.21) | |
// ---- | |
.icon-foo { | |
&.icon-15 { | |
&.icon-snow { | |
color: green; | |
} | |
} | |
} | |
.mom { | |
.likes { | |
.pizza { | |
@extend .icon-snow; | |
} | |
} | |
} |
This file contains 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
.icon-foo.icon-15.icon-snow, .mom .likes .icon-foo.icon-15.pizza { | |
color: green; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment