1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-07 14:50:52 +00:00

more icons fixes

This commit is contained in:
slowbackspace 2019-03-21 13:56:18 +01:00
parent aad0867020
commit 6acbabbff5
4 changed files with 11 additions and 7 deletions

View File

@ -208,7 +208,7 @@ const AdvancedForm = (props: Props) => {
<StyledIcon
icon={ICONS.HELP}
color={colors.TEXT_SECONDARY}
size={14}
size={12}
/>
</Tooltip>
</Left>
@ -266,7 +266,7 @@ const AdvancedForm = (props: Props) => {
<StyledIcon
icon={ICONS.HELP}
color={colors.TEXT_SECONDARY}
size={14}
size={12}
/>
</Tooltip>
</Left>
@ -292,7 +292,7 @@ const AdvancedForm = (props: Props) => {
<StyledIcon
icon={ICONS.HELP}
color={colors.TEXT_SECONDARY}
size={14}
size={12}
/>
</Tooltip>
</Left>

View File

@ -126,7 +126,7 @@ const AdvancedForm = (props: Props) => {
<StyledIcon
icon={ICONS.HELP}
color={colors.TEXT_SECONDARY}
size={14}
size={12}
/>
</Tooltip>
</Left>
@ -165,7 +165,7 @@ const AdvancedForm = (props: Props) => {
<StyledIcon
icon={ICONS.HELP}
color={colors.TEXT_SECONDARY}
size={14}
size={12}
/>
</Tooltip>
</Left>

View File

@ -92,6 +92,8 @@ const Label = styled.div`
const StyledIcon = styled(Icon)`
cursor: pointer;
margin-left: 6px;
align-items: center;
margin-top: -5px;
`;
@ -141,7 +143,7 @@ class AccountBalance extends PureComponent<Props, State> {
placement="top"
content="Fiat rates are not currently available."
>
<StyledIcon icon={ICONS.HELP} color={colors.TEXT_SECONDARY} size={26} />
<StyledIcon icon={ICONS.HELP} color={colors.TEXT_SECONDARY} size={12} />
</Tooltip>
);

View File

@ -91,7 +91,9 @@ const Label = styled.div`
const StyledIcon = styled(Icon)`
cursor: pointer;
margin-left: 6px;
margin-top: -5px;
align-items: center;
`;
const TooltipWrapper = styled.div`
@ -143,7 +145,7 @@ class AccountBalance extends PureComponent<Props, State> {
placement="top"
content="Fiat rates are not currently available."
>
<StyledIcon icon={ICONS.HELP} color={colors.TEXT_SECONDARY} size={26} />
<StyledIcon icon={ICONS.HELP} color={colors.TEXT_SECONDARY} size={12} />
</Tooltip>
);