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
// test for compiled css order | |
// mixin experiment | |
@mixin text-links ($color: green) { | |
&:link { | |
color: $color; | |
} | |
&:visited { | |
color: $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
// test for compiled css order | |
// mixin experiment | |
%text-links-ph { | |
&:link { | |
color: yellow; | |
} | |
&:visited { | |
color: yellow; |