Skip to content

Commit

Permalink
fix(Coinify): arrows between input fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip Welber committed Jun 12, 2018
1 parent 9895ef6 commit f810d4d
Showing 1 changed file with 9 additions and 4 deletions.
Expand Up @@ -42,10 +42,14 @@ const Unit = styled.span`
position: absolute;
color: ${props => props.theme['gray-4']};
`
const ArrowLeft = styled(Icon)`
margin-left: 10px;
color: #bbb;
`
const ArrowRight = styled(Icon)`
margin-left: 15px;
margin-right: 15px;
color: #5F5F5F;
margin-left: -10px;
margin-right: 10px;
color: #bbb;
`
const Error = styled(Text)`
position: absolute;
Expand Down Expand Up @@ -148,7 +152,8 @@ const FiatConvertor = (props) => {
<Field name='leftVal' component={TextBoxDebounced} disabled={disabled || !canTrade} borderRightNone={1} />
<Field name='currency' component={SelectBoxCoinifyCurrency} defaultDisplay={defaultCurrency} isSell={isSell} />
</Container>
<ArrowRight weight={600} size='22px' name='right-arrow' />
<ArrowLeft size='16px' name='left-arrow' />
<ArrowRight size='16px' name='right-arrow' />
<Container>
<Field name='rightVal' component={TextBoxDebounced} disabled={disabled || !canTrade} />
<Unit>{currency}</Unit>
Expand Down

0 comments on commit f810d4d

Please sign in to comment.