From 37d9e48c0a85820d204d9f45155d673e38d19523 Mon Sep 17 00:00:00 2001 From: Robin Townsend Date: Mon, 31 Oct 2022 15:16:02 -0400 Subject: [PATCH] Add an underline to blue (external) links on hover --- src/typography/Typography.module.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/typography/Typography.module.css b/src/typography/Typography.module.css index a10c8b8c..a22f22ec 100644 --- a/src/typography/Typography.module.css +++ b/src/typography/Typography.module.css @@ -24,6 +24,11 @@ color: var(--links); } +.link:hover { + text-decoration: underline; + opacity: initial; +} + .primary { color: var(--accent); }