mirror of
https://github.com/trezor/trezor-wallet
synced 2025-01-07 14:50:52 +00:00
fix hidebalance icons
This commit is contained in:
parent
f046e21e75
commit
aad0867020
@ -108,7 +108,7 @@ class MenuItems extends PureComponent {
|
||||
</Item>
|
||||
<Divider />
|
||||
<Item>
|
||||
<Icon icon={icons.EYE_CROSSED} size={25} color={colors.TEXT_SECONDARY} />
|
||||
<Icon icon={icons.EYE_CROSSED} size={14} color={colors.TEXT_SECONDARY} />
|
||||
<Label>
|
||||
<FormattedMessage {...l10nCommonMessages.TR_HIDE_BALANCE} />
|
||||
</Label>
|
||||
|
@ -99,7 +99,7 @@ class AddedToken extends PureComponent {
|
||||
>
|
||||
<TooltipIcon
|
||||
icon={ICONS.EYE_CROSSED}
|
||||
size={25}
|
||||
size={14}
|
||||
color={colors.TEXT_SECONDARY}
|
||||
/>
|
||||
</Tooltip>
|
||||
@ -111,7 +111,7 @@ class AddedToken extends PureComponent {
|
||||
isTransparent
|
||||
onClick={() => this.props.removeToken(this.props.token)}
|
||||
>
|
||||
<Icon icon={ICONS.CLOSE} size={23} />
|
||||
<Icon icon={ICONS.CLOSE} size={14} />
|
||||
</RemoveTokenButton>
|
||||
</TokenWrapper>
|
||||
);
|
||||
|
@ -104,7 +104,7 @@ const AccountSummary = (props: Props) => {
|
||||
placement="top"
|
||||
content={props.intl.formatMessage(l10nSummaryMessages.TR_INSERT_TOKEN_NAME)}
|
||||
>
|
||||
<StyledIcon icon={ICONS.HELP} color={colors.TEXT_SECONDARY} size={14} />
|
||||
<StyledIcon icon={ICONS.HELP} color={colors.TEXT_SECONDARY} size={12} />
|
||||
</Tooltip>
|
||||
</TokensHeadingWrapper>
|
||||
<AsyncSelectWrapper>
|
||||
|
@ -67,6 +67,7 @@ const Info = styled.div`
|
||||
`;
|
||||
|
||||
const TooltipIcon = styled(Icon)`
|
||||
margin-left: 6px;
|
||||
cursor: pointer;
|
||||
`;
|
||||
|
||||
@ -97,7 +98,7 @@ const WalletSettings = (props: Props) => (
|
||||
maxWidth={210}
|
||||
placement="right"
|
||||
>
|
||||
<TooltipIcon icon={ICONS.HELP} color={colors.TEXT_SECONDARY} size={24} />
|
||||
<TooltipIcon icon={ICONS.HELP} color={colors.TEXT_SECONDARY} size={12} />
|
||||
</Tooltip>
|
||||
</Label>
|
||||
<Switch
|
||||
|
Loading…
Reference in New Issue
Block a user