Skip to content

Instantly share code, notes, and snippets.

@TxHawks
Last active March 10, 2016 20:45
Show Gist options
  • Save TxHawks/78f240b6ab4caa701c17 to your computer and use it in GitHub Desktop.
Save TxHawks/78f240b6ab4caa701c17 to your computer and use it in GitHub Desktop.
nested mixin libsass
// ----
// libsass (v3.3.2)
// ----
@mixin parent {
@mixin nested {
key: value
}
@include nested;
}
test {
@include parent;
}
test {
key: value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment