Skip to content

Instantly share code, notes, and snippets.

@Phunky
Last active August 29, 2015 14:11
Show Gist options
  • Save Phunky/055270dcac86903a4268 to your computer and use it in GitHub Desktop.
Save Phunky/055270dcac86903a4268 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
Make a mixin instead of nesting
// ----
// Sass (v3.3.14)
// Compass (v1.0.1)
// ----
@mixin dont-nest-me($block) {
#{$block} {
display: block;
&--expanded, %expanded {
background: #fff;
& > #{$block}--container {
overflow: hidden;
}
}
}
}
@include dont-nest-me('.card');
.card {
display: block;
}
.card--expanded {
background: #fff;
}
.card--expanded > .card--container {
overflow: hidden;
}
Make a mixin instead of nesting
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment