Skip to content

Instantly share code, notes, and snippets.

@jory
Created February 3, 2014 20:17
Show Gist options
  • Save jory/8791511 to your computer and use it in GitHub Desktop.
Save jory/8791511 to your computer and use it in GitHub Desktop.
@mixin small {
html.small & {
@content;
}
}
@mixin fat {
html.fat & {
@content;
}
}
foo {
@include small {
@include fat {
background: teal;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment