diff options
author | Kevin Serrano <kevgagser@gmail.com> | 2018-01-19 04:39:09 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-19 04:39:09 +0800 |
commit | 5fff2e19d8ff6fa50da5696b3c42f5cf1f359744 (patch) | |
tree | a13d409a801ca178f8f9863484f860cd92153d2e /ui | |
parent | 4fae461a672b89a16c496d09321f11f86b873e32 (diff) | |
parent | 853e7f84204226b9cc35fe8bca5cb6ebe7ff03b0 (diff) | |
download | tangerine-wallet-browser-5fff2e19d8ff6fa50da5696b3c42f5cf1f359744.tar.gz tangerine-wallet-browser-5fff2e19d8ff6fa50da5696b3c42f5cf1f359744.tar.zst tangerine-wallet-browser-5fff2e19d8ff6fa50da5696b3c42f5cf1f359744.zip |
Merge pull request #3024 from alextsg/cb-529
[NewUI] Update popout to fullscreen icon
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/add-token.js | 2 | ||||
-rw-r--r-- | ui/app/components/tx-view.js | 4 | ||||
-rw-r--r-- | ui/app/css/itcss/components/newui-sections.scss | 2 |
3 files changed, 5 insertions, 3 deletions
diff --git a/ui/app/add-token.js b/ui/app/add-token.js index e3fe93362..3a806d34b 100644 --- a/ui/app/add-token.js +++ b/ui/app/add-token.js @@ -3,7 +3,7 @@ const Component = require('react').Component const classnames = require('classnames') const h = require('react-hyperscript') const connect = require('react-redux').connect -const R = require('ramda'); +const R = require('ramda') const Fuse = require('fuse.js') const contractMap = require('eth-contract-metadata') const TokenBalance = require('./components/token-balance') diff --git a/ui/app/components/tx-view.js b/ui/app/components/tx-view.js index 0148b32a5..b25d8e0f9 100644 --- a/ui/app/components/tx-view.js +++ b/ui/app/components/tx-view.js @@ -100,7 +100,7 @@ TxView.prototype.render = function () { h('div.flex-row.phone-visible', { style: { - margin: '1em 0.9em', + margin: '1.5em 1.2em 0', justifyContent: 'space-between', alignItems: 'center', }, @@ -136,7 +136,7 @@ TxView.prototype.render = function () { !isMascara && h('div.open-in-browser', { onClick: () => global.platform.openExtensionInBrowser(), - }, [h('img', { src: 'images/open.svg' })]), + }, [h('img', { src: 'images/popout.svg' })]), ]), diff --git a/ui/app/css/itcss/components/newui-sections.scss b/ui/app/css/itcss/components/newui-sections.scss index c9a06a2cc..1c26882b5 100644 --- a/ui/app/css/itcss/components/newui-sections.scss +++ b/ui/app/css/itcss/components/newui-sections.scss @@ -40,6 +40,8 @@ $wallet-view-bg: $alabaster; .open-in-browser { cursor: pointer; + display: flex; + justify-content: center; } // wallet view and sidebar |