From 6ce651db1ca16d5b4143852480746634e7141484 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Mon, 26 Dec 2022 12:10:21 -0800 Subject: [PATCH] Fix underlines --- components/Dialog/index.scss | 4 ++++ components/GridRep/index.scss | 4 ++++ styles/globals.scss | 4 ---- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/components/Dialog/index.scss b/components/Dialog/index.scss index df8f4d31..f120d636 100644 --- a/components/Dialog/index.scss +++ b/components/Dialog/index.scss @@ -18,6 +18,10 @@ transform: translate(-50%, -50%); z-index: 21; + a:hover { + text-decoration: underline; + } + .DialogHeader { display: flex; align-items: center; diff --git a/components/GridRep/index.scss b/components/GridRep/index.scss index 27717f65..5f138109 100644 --- a/components/GridRep/index.scss +++ b/components/GridRep/index.scss @@ -8,6 +8,10 @@ &:hover { background: var(--grid-rep-hover); + a { + text-decoration: none; + } + h2, .Grid { cursor: pointer; diff --git a/styles/globals.scss b/styles/globals.scss index 7e31c512..204574d2 100644 --- a/styles/globals.scss +++ b/styles/globals.scss @@ -33,10 +33,6 @@ a { color: $blue; text-decoration: none; - &:hover { - text-decoration: underline; - } - &:visited { color: $blue; }