Created
September 1, 2014 08:09
-
-
Save stevenadams/f9a0bd798d7932aa4d19 to your computer and use it in GitHub Desktop.
Handy Snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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