diff options
author | Thomas Huang <tmashuang@users.noreply.github.com> | 2018-03-14 02:00:52 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-14 02:00:52 +0800 |
commit | 1d2cb46eff10023056a36f815e70ae2aec5a7a7d (patch) | |
tree | 7ce94489dbd6c30e8f53ddf06dda1b898b95a583 /ui/app/components/tx-view.js | |
parent | b45ea44aa5eb35c5092d78bc888e884af70db7cb (diff) | |
parent | 6a17a0cdf1bb3a13b5354606f1cfdac40659689a (diff) | |
download | tangerine-wallet-browser-1d2cb46eff10023056a36f815e70ae2aec5a7a7d.tar tangerine-wallet-browser-1d2cb46eff10023056a36f815e70ae2aec5a7a7d.tar.gz tangerine-wallet-browser-1d2cb46eff10023056a36f815e70ae2aec5a7a7d.tar.bz2 tangerine-wallet-browser-1d2cb46eff10023056a36f815e70ae2aec5a7a7d.tar.lz tangerine-wallet-browser-1d2cb46eff10023056a36f815e70ae2aec5a7a7d.tar.xz tangerine-wallet-browser-1d2cb46eff10023056a36f815e70ae2aec5a7a7d.tar.zst tangerine-wallet-browser-1d2cb46eff10023056a36f815e70ae2aec5a7a7d.zip |
Merge branch 'master' into i18n
Diffstat (limited to 'ui/app/components/tx-view.js')
-rw-r--r-- | ui/app/components/tx-view.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ui/app/components/tx-view.js b/ui/app/components/tx-view.js index 85892b93b..96d776270 100644 --- a/ui/app/components/tx-view.js +++ b/ui/app/components/tx-view.js @@ -101,9 +101,10 @@ TxView.prototype.render = function () { h('div.flex-row.phone-visible', { style: { - margin: '1.5em 1.2em 0', justifyContent: 'space-between', alignItems: 'center', + flex: '0 0 auto', + margin: '10px', }, }, [ @@ -111,11 +112,10 @@ TxView.prototype.render = function () { style: { fontSize: '1.3em', cursor: 'pointer', + padding: '10px', }, - onClick: () => { - this.props.sidebarOpen ? this.props.hideSidebar() : this.props.showSidebar() - }, - }, []), + onClick: () => this.props.sidebarOpen ? this.props.hideSidebar() : this.props.showSidebar(), + }), h('.identicon-wrapper.select-none', { style: { |