aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Finlay <somniac@me.com>2016-08-15 13:41:23 +0800
committerGitHub <noreply@github.com>2016-08-15 13:41:23 +0800
commit271e3c4fdf1a86a989d642c18815d7f6537ed951 (patch)
treef3fe1a9bcdc04ca4b7184bf97090fadc1a96b28b
parent9b1a3fd7f36adfacd46de78f4f60e26eca6edd16 (diff)
parent2ef4cbaa89f5539632d8bfe93355d81d5c1e7831 (diff)
downloadtangerine-wallet-browser-271e3c4fdf1a86a989d642c18815d7f6537ed951.tar
tangerine-wallet-browser-271e3c4fdf1a86a989d642c18815d7f6537ed951.tar.gz
tangerine-wallet-browser-271e3c4fdf1a86a989d642c18815d7f6537ed951.tar.bz2
tangerine-wallet-browser-271e3c4fdf1a86a989d642c18815d7f6537ed951.tar.lz
tangerine-wallet-browser-271e3c4fdf1a86a989d642c18815d7f6537ed951.tar.xz
tangerine-wallet-browser-271e3c4fdf1a86a989d642c18815d7f6537ed951.tar.zst
tangerine-wallet-browser-271e3c4fdf1a86a989d642c18815d7f6537ed951.zip
Merge pull request #547 from MetaMask/cssFixes
Add margin to "go to test faucet" button and show more of the address…
-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,
}),