From 957588456a1b2a10f9e142da9af1a1263574a55a Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Mon, 30 Oct 2023 05:29:26 -0500 Subject: [PATCH] feat(style): do not outline active/focused links --- assets/style/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/assets/style/style.css b/assets/style/style.css index fb10272..4980f05 100644 --- a/assets/style/style.css +++ b/assets/style/style.css @@ -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);