Login: fix help button color

This commit is contained in:
Viktor Fomin 2022-10-27 17:10:39 +05:00
parent e234f1c619
commit e231dafb62
2 changed files with 9 additions and 1 deletions

View File

@ -174,6 +174,14 @@ export const LoginContainer = styled.div`
} }
} }
.help-button{
svg {
path {
fill: ${(props) => props.theme.login.helpButton};
}
}
}
.checkbox-text{ .checkbox-text{
color: ${(props) => props.theme.checkbox.arrowColor}; color: ${(props) => props.theme.checkbox.arrowColor};
} }

View File

@ -284,7 +284,7 @@ const LoginForm: React.FC<ILoginFormProps> = ({
helpButton={ helpButton={
!checkIsSSR() && ( !checkIsSSR() && (
<HelpButton <HelpButton
color="#A3A9AE" className="help-button"
helpButtonHeaderContent={t("CookieSettingsTitle")} helpButtonHeaderContent={t("CookieSettingsTitle")}
tooltipContent={ tooltipContent={
<Text fontSize="12px">{t("RememberHelper")}</Text> <Text fontSize="12px">{t("RememberHelper")}</Text>