hotfix: WalletSummary border radius

This commit is contained in:
George Lima 2018-12-10 21:21:07 -03:00
parent fb374671ab
commit d0c4a295db
1 changed files with 6 additions and 3 deletions

View File

@ -13,7 +13,7 @@ const Wrapper = styled.div`
display: flex;
flex-direction: column;
background-color: ${props => props.theme.colors.cardBackgroundColor};
border-radius: 10px;
border-radius: 5px;
padding: 30px;
margin: 20px;
position: relative;
@ -42,13 +42,16 @@ const ShieldedValue = styled(Label)`
`;
const SeeMoreButton = styled.button`
display: flex;
align-items: center;
justify-content: center;
outline: none;
border-radius: 100%;
border-width: 1px;
border-color: ${props => (props.isOpen ? props.theme.colors.activeItem : props.theme.colors.text)};
background-color: transparent;
width: 50px;
height: 50px;
width: 35px;
height: 35px;
cursor: pointer;
position: absolute;
right: 10px;