Last active
December 21, 2015 18:09
-
-
Save pdaoust/6345649 to your computer and use it in GitHub Desktop.
Unexpected behaviour with Sass nested selectors.
This file contains 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 mini-link-reset { | |
&, &:hover, &:focus, &:active, &:visited { | |
color: inherit; | |
text-decoration: none; | |
} | |
} | |
a { | |
@include mini-link-reset; | |
color: red; /* Whoa, buddy, how did you get up there? */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment