Fixes currency symbol font size in Shapeshift modal (#2840)

* Fix case error in Dapps import

* Fixed big input in modal and currency symbols size (#2718)

* `em` instead of `rem`
This commit is contained in:
Nicolas Gotchac 2016-10-24 15:10:27 +02:00 committed by Gav Wood
parent 4ea67ff91d
commit f4203a2571
3 changed files with 9 additions and 2 deletions

View File

@ -18,7 +18,7 @@
} }
.accept { .accept {
padding: 1.5em 0; margin: 1.5em 0;
} }
.coinselector { .coinselector {

View File

@ -22,3 +22,9 @@
.amount { .amount {
display: inline-block; display: inline-block;
} }
.symbol {
font-variant: small-caps;
margin-left: 0.1rem;
font-size: 0.8em;
}

View File

@ -38,7 +38,8 @@ export default class Value extends Component {
return ( return (
<div className={ styles.body }> <div className={ styles.body }>
<span>{ value }</span><small>{ symbol || 'ETH' }</small> <span>{ value } </span>
<span className={ styles.symbol }>{ symbol || 'ETH' }</span>
</div> </div>
); );
} }