Skip to content

Instantly share code, notes, and snippets.

@shaunbent
Created October 5, 2015 08:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shaunbent/8dd837361c68e9dd77d1 to your computer and use it in GitHub Desktop.
Save shaunbent/8dd837361c68e9dd77d1 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.3.0-beta2)
// ----
@mixin foo() {
color: red;
@at-root {
.foo #{&} {
background: green;
}
}
}
.bar {
@include foo;
}
.bar {
color: red;
}
.foo .bar {
background: green;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment