diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-09-13 05:27:26 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-09-13 05:27:26 +0800 |
commit | 2caac3c7d75c1ae94685c608f5f0ed7e470c1858 (patch) | |
tree | 428eb2d23e17981eb5848735f5760f7fff8cb202 /ui | |
parent | 0d11eab8cbb8f88c77a5d9eebf87a5796a585c93 (diff) | |
download | tangerine-wallet-browser-2caac3c7d75c1ae94685c608f5f0ed7e470c1858.tar tangerine-wallet-browser-2caac3c7d75c1ae94685c608f5f0ed7e470c1858.tar.gz tangerine-wallet-browser-2caac3c7d75c1ae94685c608f5f0ed7e470c1858.tar.bz2 tangerine-wallet-browser-2caac3c7d75c1ae94685c608f5f0ed7e470c1858.tar.lz tangerine-wallet-browser-2caac3c7d75c1ae94685c608f5f0ed7e470c1858.tar.xz tangerine-wallet-browser-2caac3c7d75c1ae94685c608f5f0ed7e470c1858.tar.zst tangerine-wallet-browser-2caac3c7d75c1ae94685c608f5f0ed7e470c1858.zip |
Fix single account list formatting
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/accounts/account-list-item.js | 3 | ||||
-rw-r--r-- | ui/app/accounts/index.js | 4 |
2 files changed, 2 insertions, 5 deletions
diff --git a/ui/app/accounts/account-list-item.js b/ui/app/accounts/account-list-item.js index 63959da97..4e0d69ed7 100644 --- a/ui/app/accounts/account-list-item.js +++ b/ui/app/accounts/account-list-item.js @@ -23,9 +23,6 @@ AccountListItem.prototype.render = function () { return ( h(`.accounts-list-option.flex-row.flex-space-between.pointer.hover-white${selectedClass}`, { key: `account-panel-${identity.address}`, - style: { - flex: '1 0 auto', - }, onClick: (event) => this.props.onShowDetail(identity.address, event), }, [ diff --git a/ui/app/accounts/index.js b/ui/app/accounts/index.js index c20900c1e..d3c84d387 100644 --- a/ui/app/accounts/index.js +++ b/ui/app/accounts/index.js @@ -84,7 +84,7 @@ AccountsScreen.prototype.render = function () { }) }), - h('hr.horizontal-line', {key: 'horizontal-line1'}), + h('hr.horizontal-line'), h('div.footer.hover-white.pointer', { key: 'reveal-account-bar', onClick: () => { @@ -92,7 +92,6 @@ AccountsScreen.prototype.render = function () { }, style: { display: 'flex', - flex: '1 0 auto', height: '40px', paddint: '10px', justifyContent: 'center', @@ -101,6 +100,7 @@ AccountsScreen.prototype.render = function () { }, [ h('i.fa.fa-plus.fa-lg', {key: ''}), ]), + h('hr.horizontal-line'), ]), unconfTxList.length ? ( |