diff options
Diffstat (limited to 'ui/app/components')
-rw-r--r-- | ui/app/components/tx-view.js | 5 | ||||
-rw-r--r-- | ui/app/components/wallet-view.js | 6 |
2 files changed, 2 insertions, 9 deletions
diff --git a/ui/app/components/tx-view.js b/ui/app/components/tx-view.js index 6b8e9e4dd..97b9a89f4 100644 --- a/ui/app/components/tx-view.js +++ b/ui/app/components/tx-view.js @@ -43,10 +43,7 @@ TxView.prototype.render = function () { const selected = '0x82df11beb942BEeeD58d466fCb0F0791365C7684' // TODO: remove fake address return h('div.tx-view.flex-column', { - style: { - flex: '62 0 62%', - background: '#FFFFFF', - } + style: {}, }, [ h('div.flex-row.phone-visible', { diff --git a/ui/app/components/wallet-view.js b/ui/app/components/wallet-view.js index cb1448598..1c7330193 100644 --- a/ui/app/components/wallet-view.js +++ b/ui/app/components/wallet-view.js @@ -35,11 +35,7 @@ WalletView.prototype.render = function () { const { network, responsiveDisplayClassname, style } = this.props return h('div.wallet-view.flex-column' + (responsiveDisplayClassname || ''), { - style: { - flex: '28 0 28%', - background: '#FAFAFA', // TODO: add to reusable colors - ...style, - } + style: {}, }, [ // TODO: Separate component: wallet account details |