From 8e53b8af87e09224089e9102eaa5adaa21928209 Mon Sep 17 00:00:00 2001 From: freakoverse Date: Fri, 16 Aug 2024 12:15:02 +0000 Subject: [PATCH] to affect style of links on hover of their parent --- src/styles/nav.module.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/styles/nav.module.scss b/src/styles/nav.module.scss index ea71e35..101e2b3 100644 --- a/src/styles/nav.module.scss +++ b/src/styles/nav.module.scss @@ -35,6 +35,11 @@ &:hover { color: rgba(255, 255, 255, 0.75); } + + &:hover a { + color: white; + text-decoration: underline; + } } }