Skip to content

Instantly share code, notes, and snippets.

@stevenadams
Created September 1, 2014 08:09
Show Gist options
  • Save stevenadams/f9a0bd798d7932aa4d19 to your computer and use it in GitHub Desktop.
Save stevenadams/f9a0bd798d7932aa4d19 to your computer and use it in GitHub Desktop.
Handy Snippets
@mixin active {
&.is-active,
&:hover {
@content;
}
}
.content-directive {
foo: bar;
@include active {
baz: qux;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment