aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorFrankie <frankie.pangilinan@consensys.net>2016-08-15 12:41:08 +0800
committerFrankie <frankie.pangilinan@consensys.net>2016-08-15 12:41:08 +0800
commit2ef4cbaa89f5539632d8bfe93355d81d5c1e7831 (patch)
treef3fe1a9bcdc04ca4b7184bf97090fadc1a96b28b /ui
parent9b1a3fd7f36adfacd46de78f4f60e26eca6edd16 (diff)
downloadtangerine-wallet-browser-2ef4cbaa89f5539632d8bfe93355d81d5c1e7831.tar
tangerine-wallet-browser-2ef4cbaa89f5539632d8bfe93355d81d5c1e7831.tar.gz
tangerine-wallet-browser-2ef4cbaa89f5539632d8bfe93355d81d5c1e7831.tar.bz2
tangerine-wallet-browser-2ef4cbaa89f5539632d8bfe93355d81d5c1e7831.tar.lz
tangerine-wallet-browser-2ef4cbaa89f5539632d8bfe93355d81d5c1e7831.tar.xz
tangerine-wallet-browser-2ef4cbaa89f5539632d8bfe93355d81d5c1e7831.tar.zst
tangerine-wallet-browser-2ef4cbaa89f5539632d8bfe93355d81d5c1e7831.zip
Add margin to "go to test faucet" button and show more of the address on qr code page
Diffstat (limited to 'ui')
-rw-r--r--ui/app/components/buy-button-subview.js3
-rw-r--r--ui/app/components/qr-code.js6
2 files changed, 8 insertions, 1 deletions
diff --git a/ui/app/components/buy-button-subview.js b/ui/app/components/buy-button-subview.js
index 19a6e251f..cebb8f3f6 100644
--- a/ui/app/components/buy-button-subview.js
+++ b/ui/app/components/buy-button-subview.js
@@ -110,6 +110,9 @@ BuyButtonSubview.prototype.formVersionSubview = function () {
h('h3.text-transform-uppercase', 'or:'),
this.props.network === '2' ? h('button.text-transform-uppercase', {
onClick: () => this.props.dispatch(actions.buyEth()),
+ style: {
+ marginTop: '15px',
+ },
}, 'Go To Test Faucet') : null,
])
}
diff --git a/ui/app/components/qr-code.js b/ui/app/components/qr-code.js
index 1c744b234..f8cace4e0 100644
--- a/ui/app/components/qr-code.js
+++ b/ui/app/components/qr-code.js
@@ -41,7 +41,11 @@ QrCodeView.prototype.render = function () {
},
}),
h('.flex-row', [
- h('h3.ellip-address', Qr.data),
+ h('h3.ellip-address', {
+ style: {
+ width: '247px',
+ },
+ }, Qr.data),
h(CopyButton, {
value: Qr.data,
}),