Skip to content

Instantly share code, notes, and snippets.

@lucalanca
Created August 20, 2015 13:23
Show Gist options
  • Save lucalanca/58b63a3303b866819a18 to your computer and use it in GitHub Desktop.
Save lucalanca/58b63a3303b866819a18 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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;
}
}
.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