mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-22 17:33:23 +01:00
Move account balance down a row. Adjusted positioning of buttons.
This commit is contained in:
parent
76c473538a
commit
3ca20bd8a3
@ -56,7 +56,7 @@ AccountDetailScreen.prototype.render = function () {
|
|||||||
// header - identicon + nav
|
// header - identicon + nav
|
||||||
h('div', {
|
h('div', {
|
||||||
style: {
|
style: {
|
||||||
marginTop: '15px',
|
marginTop: '20px',
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
justifyContent: 'flex-start',
|
justifyContent: 'flex-start',
|
||||||
alignItems: 'flex-start',
|
alignItems: 'flex-start',
|
||||||
@ -120,6 +120,8 @@ AccountDetailScreen.prototype.render = function () {
|
|||||||
h('.flex-row', {
|
h('.flex-row', {
|
||||||
style: {
|
style: {
|
||||||
justifyContent: 'flex-end',
|
justifyContent: 'flex-end',
|
||||||
|
position: 'relative',
|
||||||
|
bottom: '15px',
|
||||||
},
|
},
|
||||||
}, [
|
}, [
|
||||||
h(CopyButton, {
|
h(CopyButton, {
|
||||||
@ -150,32 +152,32 @@ AccountDetailScreen.prototype.render = function () {
|
|||||||
|
|
||||||
// account ballence
|
// account ballence
|
||||||
|
|
||||||
h('.flex-row', {
|
|
||||||
style: {
|
|
||||||
justifyContent: 'space-between',
|
|
||||||
alignItems: 'flex-start',
|
|
||||||
},
|
|
||||||
}, [
|
|
||||||
|
|
||||||
h(EtherBalance, {
|
|
||||||
value: account && account.balance,
|
|
||||||
style: {
|
|
||||||
lineHeight: '7px',
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
|
|
||||||
h('button', {
|
|
||||||
onClick: () => props.dispatch(actions.showSendPage()),
|
|
||||||
style: {
|
|
||||||
marginBottom: '20px',
|
|
||||||
marginRight: '8px',
|
|
||||||
},
|
|
||||||
}, 'SEND'),
|
|
||||||
|
|
||||||
]),
|
|
||||||
|
|
||||||
]),
|
]),
|
||||||
]),
|
]),
|
||||||
|
h('.flex-row', {
|
||||||
|
style: {
|
||||||
|
justifyContent: 'space-between',
|
||||||
|
alignItems: 'flex-start',
|
||||||
|
},
|
||||||
|
}, [
|
||||||
|
|
||||||
|
h(EtherBalance, {
|
||||||
|
value: account && account.balance,
|
||||||
|
style: {
|
||||||
|
lineHeight: '7px',
|
||||||
|
marginTop: '10px',
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
|
||||||
|
h('button', {
|
||||||
|
onClick: () => props.dispatch(actions.showSendPage()),
|
||||||
|
style: {
|
||||||
|
marginBottom: '20px',
|
||||||
|
marginRight: '8px',
|
||||||
|
},
|
||||||
|
}, 'SEND'),
|
||||||
|
|
||||||
|
]),
|
||||||
]),
|
]),
|
||||||
|
|
||||||
// subview (tx history, pk export confirm)
|
// subview (tx history, pk export confirm)
|
||||||
|
Loading…
Reference in New Issue
Block a user