Skip to content

Instantly share code, notes, and snippets.

@jory
Created February 3, 2014 20:18
Show Gist options
  • Save jory/8791517 to your computer and use it in GitHub Desktop.
Save jory/8791517 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;
}
}
}
@jory
Copy link
Author

jory commented Feb 3, 2014

Results in

html.small html.fat foo {
  background: teal;
}

But I'd like to get

html.small.fat foo {
  background: teal;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment