Skip to content

Commit

Permalink
fix(link): use hover color token for visited links (#5559)
Browse files Browse the repository at this point in the history
  • Loading branch information
emyarod authored Mar 6, 2020
1 parent fc2b2a9 commit 06b5db9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/components/src/components/link/_link.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
transition: $duration--fast-01 motion(standard, productive);

&:hover {
color: $link-01;
color: $hover-primary-text;
text-decoration: underline;
}

Expand All @@ -57,7 +57,7 @@
}

&:visited:hover {
color: $link-01;
color: $hover-primary-text;
}
}

Expand Down

0 comments on commit 06b5db9

Please sign in to comment.