Set some anchor color and text decoration

Remove the animation
This commit is contained in:
Eryn Wells 2024-07-23 09:00:11 -07:00
parent c6213619b0
commit 2ea86253a3

View file

@ -11,21 +11,22 @@
# ANCHORS
**********/
a {
--hover-animating-timing: 0.1s;
:root {
--text-color-link: var(--blue);
}
color: var(--blue);
a {
color: var(--text-color-link);
text-decoration: none;
transition: color var(--hover-animating-timing);
&:hover {
color: var(--blue);
color: var(--text-color-link);
text-decoration: underline;
transition: color var(--hover-animating-timing);
}
&:visited {
color: var(--blue);
color: var(--text-color-link);
text-decoration: underline dashed;
}
}
@ -34,4 +35,3 @@ a {
text-decoration: underline;
}
}