Web: Components: fix social buttons style

This commit is contained in:
Viktor Fomin 2022-01-28 11:23:02 +03:00
parent 663c7aef90
commit 066f8d1a2d
3 changed files with 6 additions and 4 deletions

View File

@ -69,6 +69,10 @@ const StyledSocialButton = styled(ButtonWrapper).attrs((props) => ({
cursor: pointer;
box-shadow: ${(props) =>
props.theme.socialButton.hoverBoxShadow};
border: 1px solid #1877f2;
.social_button_text {
color: #1877f2;
}
}
:hover {

View File

@ -243,8 +243,7 @@ const Base = {
boxShadow:
"0px 1px 1px rgba(0, 0, 0, 0.24),0px 0px 1px rgba(0, 0, 0, 0.12)",
hoverBoxShadow:
"0px 2px 2px rgba(0, 0, 0, 0.24),0px 0px 2px rgba(0, 0, 0, 0.12)",
hoverBoxShadow: "none",
color: "rgba(0, 0, 0, 0.54)",
disableColor: "rgba(0, 0, 0, 0.4)",

View File

@ -217,8 +217,7 @@ const Dark = {
boxShadow:
"0px 1px 1px rgba(0, 0, 0, 0.24),0px 0px 1px rgba(0, 0, 0, 0.12)",
hoverBoxShadow:
"0px 2px 2px rgba(0, 0, 0, 0.24),0px 0px 2px rgba(0, 0, 0, 0.12)",
hoverBoxShadow: "none",
color: "rgba(0, 0, 0, 0.54)",
disableColor: "rgba(0, 0, 0, 0.4)",