From 6cc2003e1f2fffe3382aacdceabf5cf943846a6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Thu, 11 Aug 2022 20:31:18 +0200 Subject: [PATCH] Fix contrast in account verified text The contrast value was 1.75, which makes the text hard to read and it isn't even near to the minimum accessibility requirements. We're using the `$color-success` variable since the `$check` color is green and this one is green too. --- app/assets/stylesheets/account/verify-account.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/account/verify-account.scss b/app/assets/stylesheets/account/verify-account.scss index 79b56e6ef..c95b27a38 100644 --- a/app/assets/stylesheets/account/verify-account.scss +++ b/app/assets/stylesheets/account/verify-account.scss @@ -3,11 +3,11 @@ .already-verified { @include has-fa-icon(check, solid); - color: $check; + color: $color-success; line-height: $line-height * 2; &::before { - color: $text-medium; + color: $check; font-size: 1.4em; } }