feat(style): do not outline active/focused links

This commit is contained in:
Price Hiller 2023-10-30 05:29:26 -05:00
parent 913685eae6
commit 957588456a
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -246,6 +246,11 @@ a:link {
color: var(--crystalBlue);
}
a:active, a:focus {
outline: none;
color: none;
}
a:hover,
a:visited:hover {
color: var(--fujiWhite);