Skip to content

Instantly share code, notes, and snippets.

@TxHawks
Created March 10, 2016 20:45
Show Gist options
  • Save TxHawks/6d08f8a0f6deddf951ae to your computer and use it in GitHub Desktop.
Save TxHawks/6d08f8a0f6deddf951ae to your computer and use it in GitHub Desktop.
nested mixin ruby-sass
// ----
// Sass (v3.4.21)
// Compass (v1.0.3)
// ----
@mixin parent {
@mixin nested {
key: value
}
@include nested;
}
test {
@include parent;
}
Mixins may not be defined within control directives or other mixins.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment