Skip to content

Instantly share code, notes, and snippets.

@lucalanca
Created August 20, 2015 13:22
Show Gist options
  • Save lucalanca/35aead0feba93f0e9a78 to your computer and use it in GitHub Desktop.
Save lucalanca/35aead0feba93f0e9a78 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;
}
}
.foo {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment