1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Merge pull request #547 from MetaMask/cssFixes

Add margin to "go to test faucet" button and show more of the address…
This commit is contained in:
Dan Finlay 2016-08-14 22:41:23 -07:00 committed by GitHub
commit 271e3c4fdf
2 changed files with 8 additions and 1 deletions

View File

@ -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,
])
}

View File

@ -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,
}),