From 031bd1a5c51851d331142f079ae86cbde6c6feed Mon Sep 17 00:00:00 2001 From: lbaker Date: Thu, 18 Jun 2020 10:45:58 -0700 Subject: [PATCH 1/2] chore: Remove hover color and pointer from current page --- src/components/Navigation.module.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Navigation.module.scss b/src/components/Navigation.module.scss index 40572148e..fa79ef4e7 100644 --- a/src/components/Navigation.module.scss +++ b/src/components/Navigation.module.scss @@ -29,7 +29,7 @@ text-decoration: none; transition: 0.1s; - &:hover { + &:not(.isCurrentPage):hover { color: var(--color-neutrals-600); } @@ -77,4 +77,5 @@ button.navLink { .isCurrentPage { font-weight: bold; + cursor: default; } From cf50cf94684a59cf9e8a0a44ba2653375903e55c Mon Sep 17 00:00:00 2001 From: lbaker Date: Thu, 18 Jun 2020 11:03:56 -0700 Subject: [PATCH 2/2] chore: Add back cursor:pointer --- src/components/Navigation.module.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/Navigation.module.scss b/src/components/Navigation.module.scss index fa79ef4e7..d12d771af 100644 --- a/src/components/Navigation.module.scss +++ b/src/components/Navigation.module.scss @@ -77,5 +77,4 @@ button.navLink { .isCurrentPage { font-weight: bold; - cursor: default; }