From 7a664a7f720f43679dad6f8857790af84b8b7da6 Mon Sep 17 00:00:00 2001 From: sdtsui Date: Thu, 10 Aug 2017 22:16:42 -0700 Subject: Improve text positioning on mobile view --- ui/app/components/tx-list.js | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) (limited to 'ui/app/components/tx-list.js') 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, + ]), ]), ]), -- cgit