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:
commit
271e3c4fdf
@ -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,
|
||||
])
|
||||
}
|
||||
|
@ -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,
|
||||
}),
|
||||
|
Loading…
Reference in New Issue
Block a user