diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-09-16 12:18:21 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-09-16 12:18:21 +0800 |
commit | 1f771f30e45fdc93b5e750ba05baccede6bd3385 (patch) | |
tree | 87bc43236e14908a9878edeffa84e12536973cf1 /ui | |
parent | ed51b91b4a526db6c1282445ca1fb4e41d5ca37f (diff) | |
download | tangerine-wallet-browser-1f771f30e45fdc93b5e750ba05baccede6bd3385.tar tangerine-wallet-browser-1f771f30e45fdc93b5e750ba05baccede6bd3385.tar.gz tangerine-wallet-browser-1f771f30e45fdc93b5e750ba05baccede6bd3385.tar.bz2 tangerine-wallet-browser-1f771f30e45fdc93b5e750ba05baccede6bd3385.tar.lz tangerine-wallet-browser-1f771f30e45fdc93b5e750ba05baccede6bd3385.tar.xz tangerine-wallet-browser-1f771f30e45fdc93b5e750ba05baccede6bd3385.tar.zst tangerine-wallet-browser-1f771f30e45fdc93b5e750ba05baccede6bd3385.zip |
Space out purchase details on ShapeShift form
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/components/shapeshift-form.js | 7 | ||||
-rw-r--r-- | ui/app/css/index.css | 4 |
2 files changed, 5 insertions, 6 deletions
diff --git a/ui/app/components/shapeshift-form.js b/ui/app/components/shapeshift-form.js index 58b7942c3..2bb384b94 100644 --- a/ui/app/components/shapeshift-form.js +++ b/ui/app/components/shapeshift-form.js @@ -128,7 +128,6 @@ ShapeshiftForm.prototype.renderMain = function () { this.props.isSubLoading ? this.renderLoading() : null, h('.flex-column', { style: { - width: '235px', alignItems: 'flex-start', }, }, [ @@ -270,17 +269,17 @@ ShapeshiftForm.prototype.renderInfo = function () { return h('span', { style: { - marginTop: '15px', + marginTop: '10px', marginBottom: '15px', }, }, [ h('h3.flex-row.text-transform-uppercase', { style: { - color: '#AEAEAE', + color: '#868686', paddingTop: '4px', justifyContent: 'space-around', textAlign: 'center', - fontSize: '14px', + fontSize: '17px', }, }, `Market Info for ${marketinfo.pair.replace('_', ' to ').toUpperCase()}:`), h('.marketinfo', ['Status : ', `${coinOptions[coin].status}`]), diff --git a/ui/app/css/index.css b/ui/app/css/index.css index 8543960fe..975a5289b 100644 --- a/ui/app/css/index.css +++ b/ui/app/css/index.css @@ -555,8 +555,8 @@ input.large-input { .marketinfo{ font-family: 'Montserrat light'; color: #AEAEAE; - font-size: 12px; - line-height: 14px; + font-size: 15px; + line-height: 17px; } #fromCoin::-webkit-calendar-picker-indicator { |