mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Refined tx confirmation button styles
This commit is contained in:
parent
2a204624f5
commit
468c1ffa42
@ -24,18 +24,30 @@ PendingTx.prototype.render = function () {
|
|||||||
// tx info
|
// tx info
|
||||||
h(PendingTxDetails, state),
|
h(PendingTxDetails, state),
|
||||||
|
|
||||||
|
h('style', `
|
||||||
|
.conf-buttons button {
|
||||||
|
margin-left: 10px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
`),
|
||||||
|
|
||||||
// send + cancel
|
// send + cancel
|
||||||
h('.flex-row.flex-space-around', {
|
h('.flex-row.flex-space-around.conf-buttons', {
|
||||||
style: {
|
style: {
|
||||||
marginTop: '14px',
|
display: 'flex',
|
||||||
|
justifyContent: 'flex-end',
|
||||||
|
margin: '14px 25px',
|
||||||
},
|
},
|
||||||
}, [
|
}, [
|
||||||
h('button', {
|
h('button.confirm', {
|
||||||
onClick: state.cancelTransaction,
|
|
||||||
}, 'Reject'),
|
|
||||||
h('button', {
|
|
||||||
onClick: state.sendTransaction,
|
onClick: state.sendTransaction,
|
||||||
}, 'Approve'),
|
style: { background: 'rgb(251,117,1)' },
|
||||||
|
}, 'Confirm'),
|
||||||
|
|
||||||
|
h('button.cancel', {
|
||||||
|
onClick: state.cancelTransaction,
|
||||||
|
style: { background: 'rgb(254,35,17)' },
|
||||||
|
}, 'Cancel'),
|
||||||
]),
|
]),
|
||||||
])
|
])
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user