From ef725c8b6e9b5f945a4808ca33e99e3be7551e5e Mon Sep 17 00:00:00 2001 From: Tilman Vatteroth Date: Sun, 31 May 2020 23:03:56 +0200 Subject: [PATCH] Fix text color when hovering social link buttons Signed-off-by: Tilman Vatteroth --- .../login/auth/social-link-button/social-link-button.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/landing/pages/login/auth/social-link-button/social-link-button.scss b/src/components/landing/pages/login/auth/social-link-button/social-link-button.scss index b7be1ed34..7d1b0d4d9 100644 --- a/src/components/landing/pages/login/auth/social-link-button/social-link-button.scss +++ b/src/components/landing/pages/login/auth/social-link-button/social-link-button.scss @@ -2,9 +2,10 @@ color: #FFFFFF; @mixin button($color) { + color: #ffffff; background-color: $color; &:hover { - background-color: darken($color, 10%); + background-color: darken($color, 15%); } }