aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/tx-list.js
diff options
context:
space:
mode:
authorsdtsui <szehungdanieltsui@gmail.com>2017-08-11 13:16:42 +0800
committersdtsui <szehungdanieltsui@gmail.com>2017-08-11 13:16:42 +0800
commit7a664a7f720f43679dad6f8857790af84b8b7da6 (patch)
tree80ada872c82759127e83358b0ff507aabe8d5541 /ui/app/components/tx-list.js
parent3188cc2ef08ec959ccfa5cba43e75326eae153d0 (diff)
downloadtangerine-wallet-browser-7a664a7f720f43679dad6f8857790af84b8b7da6.tar.gz
tangerine-wallet-browser-7a664a7f720f43679dad6f8857790af84b8b7da6.tar.zst
tangerine-wallet-browser-7a664a7f720f43679dad6f8857790af84b8b7da6.zip
Improve text positioning on mobile view
Diffstat (limited to 'ui/app/components/tx-list.js')
-rw-r--r--ui/app/components/tx-list.js24
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,
+ ]),
]),
]),