Created
August 20, 2015 13:23
-
-
Save lucalanca/58b63a3303b866819a18 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.14) | |
// Compass (v1.0.3) | |
// ---- | |
@mixin outer { | |
@content; | |
} | |
@mixin inner { | |
color: red; | |
} | |
.foo { | |
@include outer { | |
@include inner; | |
} | |
} | |
@include outer { | |
.foo-2 { | |
@include inner; | |
} | |
} | |
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
.foo { | |
color: red; | |
} | |
.foo-2 { | |
color: red; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment