Skip to content

Commit

Permalink
fixes issue #14
Browse files Browse the repository at this point in the history
  • Loading branch information
KayBeSee committed Sep 16, 2020
1 parent 36174a5 commit df60961
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/pages/Send/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -490,13 +490,12 @@ const AccountMenuItemWrapper = styled.div`
align-items: center;
background: ${p => p.active ? lightBlue : white};
color: ${p => p.active ? darkGray : gray};
padding: 12px;
padding: .75em;
flex: 1;
cursor: ${p => p.active ? 'auto' : 'pointer'};
border-top: ${p => p.active ? `solid 11px ${blue}` : `none`};
border-bottom: ${p => p.active ? 'none' : `solid 1px ${gray}`};
border-left: ${p => !p.active && p.borderLeft && `solid 1px ${gray}`};
border-right: ${p => !p.active && p.borderRight && `solid 1px ${gray}`};
border-right: ${p => p.borderRight && `solid 1px ${gray}`};
`;

const AccountMenuItemName = styled.div``;
Expand Down

0 comments on commit df60961

Please sign in to comment.