From 023173fada00a12841f48b3a5abf4832950ddb56 Mon Sep 17 00:00:00 2001 From: Nik <45662151+Nikosmonaut@users.noreply.github.com> Date: Fri, 13 Dec 2019 14:27:21 +0100 Subject: [PATCH] Fix some tier username (#11634) Onhover tier 3 and 5 the username still changes it's color --- website/client/src/assets/scss/tiers.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/website/client/src/assets/scss/tiers.scss b/website/client/src/assets/scss/tiers.scss index 9e9dfc46fd..5c5efdbece 100644 --- a/website/client/src/assets/scss/tiers.scss +++ b/website/client/src/assets/scss/tiers.scss @@ -17,7 +17,7 @@ .tier3 { color: #d70e14; - :hover, :active, :focus { + &:hover, &:active, &:focus { color: #d70e14; } } @@ -25,7 +25,7 @@ .tier4 { color: #c24d00; - &:hover, &:active, :focus { + &:hover, &:active, &:focus { color: #c24d00; } } @@ -33,7 +33,7 @@ .tier5 { color: #9e650f; - :hover, :active, :focus { + &:hover, &:active, &:focus { color: #9e650f; } } @@ -41,7 +41,7 @@ .tier6 { color: #2b8363; - :hover, :active, &:focus { + &:hover, &:active, &:focus { color: #2b8363; } }