feature: add hover effect in transaction item

This commit is contained in:
George Lima 2018-12-15 19:36:06 -03:00
parent a630962dd5
commit 20e44f3f96
1 changed files with 5 additions and 0 deletions

View File

@ -18,6 +18,11 @@ import truncateAddress from '../utils/truncateAddress';
const Wrapper = styled(RowComponent)`
background-color: ${props => props.theme.colors.cardBackgroundColor};
padding: 15px 17px;
cursor: pointer;
&:hover {
background-color: ${props => props.theme.colors.transactionsItemHovered};
}
`;
const Icon = styled.img`