Skip to content

Instantly share code, notes, and snippets.

@lemonmade
Created March 25, 2015 18:30
Show Gist options
  • Save lemonmade/8b74c1004dd405d50b13 to your computer and use it in GitHub Desktop.
Save lemonmade/8b74c1004dd405d50b13 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
@mixin foo {
@at-root {
.foo#{&} {
@content;
}
}
}
.bar {
@include foo {
color: blue;
}
}
.foo.bar {
color: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment