1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-12-24 16:08:11 +00:00

Clean style

This commit is contained in:
Vasek Mlejnsky 2018-08-24 14:17:07 +02:00
parent 0ea14d1e18
commit 4b2dabde38

View File

@ -18,7 +18,8 @@ const A = styled.a`
&,
&:visited,
&:active {
&:active,
&:hover {
${props => props.isGreen && css`
color: ${colors.GREEN_PRIMARY};
`}
@ -29,12 +30,6 @@ const A = styled.a`
&:hover {
border-color: transparent;
${props => props.isGreen && css`
color: ${colors.GREEN_SECONDARY};
`}
${props => props.isGray && css`
color: ${colors.TEXT_PRIMARY};
`}
}
`;