From b6d15c90359ce37c3e515987b18f985d9f58ac84 Mon Sep 17 00:00:00 2001 From: Vinicius Gabriel Machado <vgm18@inf.ufpr.br> Date: Tue, 17 Aug 2021 23:46:02 -0300 Subject: [PATCH] Fixed follow button contrast --- src/Components/ContactButtons/FollowButton.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/ContactButtons/FollowButton.js b/src/Components/ContactButtons/FollowButton.js index ba7b9a25..96c7794c 100644 --- a/src/Components/ContactButtons/FollowButton.js +++ b/src/Components/ContactButtons/FollowButton.js @@ -162,7 +162,7 @@ export function NoIcon(props) { ) : ( - <NoIconButton className={`${props.contrast}LinkColor`} + <NoIconButton contrast={state.contrast} className={`${props.contrast}LinkColor`} style={props.contrast === "" ? {border: "2px solid #00bcd4", borderRadius : "5px", color :"#00bcd4", backgroundColor: "white"} : {border: "1px solid white", borderRadius : "5px", color :"#00bcd4"}} onClick={() => handleLogin(true)}>seguir</NoIconButton> ) -- GitLab