diff options
author | sdtsui <szehungdanieltsui@gmail.com> | 2017-08-11 13:16:42 +0800 |
---|---|---|
committer | sdtsui <szehungdanieltsui@gmail.com> | 2017-08-11 13:16:42 +0800 |
commit | 7a664a7f720f43679dad6f8857790af84b8b7da6 (patch) | |
tree | 80ada872c82759127e83358b0ff507aabe8d5541 /ui/app/components | |
parent | 3188cc2ef08ec959ccfa5cba43e75326eae153d0 (diff) | |
download | tangerine-wallet-browser-7a664a7f720f43679dad6f8857790af84b8b7da6.tar tangerine-wallet-browser-7a664a7f720f43679dad6f8857790af84b8b7da6.tar.gz tangerine-wallet-browser-7a664a7f720f43679dad6f8857790af84b8b7da6.tar.bz2 tangerine-wallet-browser-7a664a7f720f43679dad6f8857790af84b8b7da6.tar.lz tangerine-wallet-browser-7a664a7f720f43679dad6f8857790af84b8b7da6.tar.xz tangerine-wallet-browser-7a664a7f720f43679dad6f8857790af84b8b7da6.tar.zst tangerine-wallet-browser-7a664a7f720f43679dad6f8857790af84b8b7da6.zip |
Improve text positioning on mobile view
Diffstat (limited to 'ui/app/components')
-rw-r--r-- | ui/app/components/tx-list.js | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/ui/app/components/tx-list.js b/ui/app/components/tx-list.js index e9f0c1cef..39cf7de79 100644 --- a/ui/app/components/tx-list.js +++ b/ui/app/components/tx-list.js @@ -134,19 +134,21 @@ TxList.prototype.renderTransactionListItem = function () { }) ]), - h('div.tx-list-account-wrapper', { - style: {} - }, [ - h('span.tx-list-account', {}, [ - '0x82df11be...7684', //address + h('div.tx-list-account-and-status-wrapper', {}, [ + h('div.tx-list-account-wrapper', { + style: {} + }, [ + h('span.tx-list-account', {}, [ + '0x82df11be...7684', //address + ]), ]), - ]), - h('div.tx-list-status-wrapper', { - style: {} - }, [ - h('span.tx-list-status', {}, [ - transactionStatus, + h('div.tx-list-status-wrapper', { + style: {} + }, [ + h('span.tx-list-status', {}, [ + transactionStatus, + ]), ]), ]), |