Created
December 8, 2014 23:33
-
-
Save kevinSuttle/bad96ad8fc20e5e87bf1 to your computer and use it in GitHub Desktop.
Sass placeholder weirdness
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
.ui-link { | |
transition-timing-function: ease-out; | |
transition-duration: 0.2s; } | |
.ui-link { | |
text-decoration: none; | |
transition-property: color; } |
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
.ui-link { | |
@extend %defaultLinkStyle; | |
} | |
%defaultAnimation { | |
transition-timing-function: ease-out; | |
transition-duration: 0.2s; | |
} | |
%defaultLinkStyle { | |
text-decoration: none; | |
@extend %defaultAnimation; | |
transition-property: color; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment