aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/tx-list.js
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@gmail.com>2018-01-17 03:58:02 +0800
committerChi Kei Chan <chikeichan@gmail.com>2018-01-18 05:50:16 +0800
commit40e58d31326cc4e759991d15e7e84140e483a791 (patch)
tree9ca849fb759dfbcd8904625dddc7bd3dd8a34014 /ui/app/components/tx-list.js
parentba0762c582be7bdb3706f66300bc3d6a5c832836 (diff)
downloadtangerine-wallet-browser-40e58d31326cc4e759991d15e7e84140e483a791.tar.gz
tangerine-wallet-browser-40e58d31326cc4e759991d15e7e84140e483a791.tar.zst
tangerine-wallet-browser-40e58d31326cc4e759991d15e7e84140e483a791.zip
Fix tx-list, confirmation screen styling
Diffstat (limited to 'ui/app/components/tx-list.js')
-rw-r--r--ui/app/components/tx-list.js9
1 files changed, 4 insertions, 5 deletions
diff --git a/ui/app/components/tx-list.js b/ui/app/components/tx-list.js
index 50e328dac..84cd0f093 100644
--- a/ui/app/components/tx-list.js
+++ b/ui/app/components/tx-list.js
@@ -36,16 +36,15 @@ TxList.prototype.componentWillMount = function () {
}
TxList.prototype.render = function () {
- return h('div.flex-column.tx-list-container', {}, [
-
+ return h('div.flex-column', [
h('div.flex-row.tx-list-header-wrapper', [
h('div.flex-row.tx-list-header', [
h('div', 'transactions'),
]),
]),
-
- this.renderTransaction(),
-
+ h('div.flex-column.tx-list-container', {}, [
+ this.renderTransaction(),
+ ]),
])
}