mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
Make personal sign view look nice
This commit is contained in:
parent
4697aca02c
commit
1d1d296a1e
@ -20,6 +20,8 @@ PendingMsgDetails.prototype.render = function () {
|
|||||||
var identity = state.identities[address] || { address: address }
|
var identity = state.identities[address] || { address: address }
|
||||||
var account = state.accounts[address] || { address: address }
|
var account = state.accounts[address] || { address: address }
|
||||||
|
|
||||||
|
var { data } = msgParams
|
||||||
|
|
||||||
return (
|
return (
|
||||||
h('div', {
|
h('div', {
|
||||||
key: msgData.id,
|
key: msgData.id,
|
||||||
@ -37,11 +39,20 @@ PendingMsgDetails.prototype.render = function () {
|
|||||||
}),
|
}),
|
||||||
|
|
||||||
// message data
|
// message data
|
||||||
h('.tx-data.flex-column.flex-justify-center.flex-grow.select-none', [
|
h('div', [
|
||||||
h('.flex-row.flex-space-between', [
|
h('label.font-small', { style: { display: 'block' } }, 'MESSAGE'),
|
||||||
h('label.font-small', 'MESSAGE'),
|
h('textarea.font-small', {
|
||||||
h('span.font-small', msgParams.data),
|
readOnly: true,
|
||||||
]),
|
style: {
|
||||||
|
width: '315px',
|
||||||
|
maxHeight: '210px',
|
||||||
|
resize: 'none',
|
||||||
|
border: 'none',
|
||||||
|
background: 'white',
|
||||||
|
padding: '3px',
|
||||||
|
},
|
||||||
|
defaultValue: data,
|
||||||
|
}),
|
||||||
]),
|
]),
|
||||||
|
|
||||||
])
|
])
|
||||||
|
Loading…
Reference in New Issue
Block a user