Something went wrong on our end
-
Tyler Struyk authoredTyler Struyk authored
_mixins.link.scss 206 B
@mixin link($link, $hover: $link, $active: $hover, $visit: $link) {
color: $link;
&:visited {
color: $visit;
}
&:hover,
&:focus {
color: $hover;
}
&:active {
color: $active;
}
}