hotfix: fix SeeMoreButton in WalletSummary

This commit is contained in:
George Lima 2018-12-11 09:13:17 -03:00
parent 9764c561d1
commit e921230333
1 changed files with 5 additions and 2 deletions

View File

@ -50,12 +50,15 @@ const SeeMoreButton = styled.button`
border-width: 1px; border-width: 1px;
border-color: ${props => (props.isOpen ? props.theme.colors.activeItem : props.theme.colors.text)}; border-color: ${props => (props.isOpen ? props.theme.colors.activeItem : props.theme.colors.text)};
background-color: transparent; background-color: transparent;
width: 35px; padding: 5px;
height: 35px;
cursor: pointer; cursor: pointer;
position: absolute; position: absolute;
right: 10px; right: 10px;
top: 10px; top: 10px;
&:hover {
border-color: ${props => props.theme.colors.activeItem};
}
`; `;
type Props = { type Props = {