1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00

send-tx remove account select button

This commit is contained in:
kumavis 2016-06-24 11:44:18 -07:00
parent cbcc0438cb
commit 02dd1669e7
2 changed files with 7 additions and 5 deletions

View File

@ -218,3 +218,7 @@ hr.horizontal-line {
display: flex;
align-items: center;
}
.invisible {
visibility: hidden;
}

View File

@ -61,7 +61,7 @@ SendTransactionScreen.prototype.render = function () {
},
}, [
// invisible placeholder for later
// back button
h('i.fa.fa-arrow-left.fa-lg.cursor-pointer.color-orange', {
onClick: this.back.bind(this),
}),
@ -74,10 +74,8 @@ SendTransactionScreen.prototype.render = function () {
}),
]),
// small accounts nav
h('i.fa.fa-users.fa-lg.cursor-pointer.color-orange', {
onClick: this.navigateToAccounts.bind(this),
}),
// invisible place holder
h('i.fa.fa-users.fa-lg.invisible'),
]),