diff options
author | Dan Finlay <dan@danfinlay.com> | 2017-07-28 04:57:01 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2017-07-28 04:57:01 +0800 |
commit | 1d9fea86546026aa09f6e040a9b0ef551d5659fa (patch) | |
tree | 7bdbb6251cc0d60a468d764eb848e1c0fcb82325 | |
parent | 21bde25780d4b228a273a75fa3e04cfe96b410e6 (diff) | |
download | tangerine-wallet-browser-1d9fea86546026aa09f6e040a9b0ef551d5659fa.tar tangerine-wallet-browser-1d9fea86546026aa09f6e040a9b0ef551d5659fa.tar.gz tangerine-wallet-browser-1d9fea86546026aa09f6e040a9b0ef551d5659fa.tar.bz2 tangerine-wallet-browser-1d9fea86546026aa09f6e040a9b0ef551d5659fa.tar.lz tangerine-wallet-browser-1d9fea86546026aa09f6e040a9b0ef551d5659fa.tar.xz tangerine-wallet-browser-1d9fea86546026aa09f6e040a9b0ef551d5659fa.tar.zst tangerine-wallet-browser-1d9fea86546026aa09f6e040a9b0ef551d5659fa.zip |
Fix info page formatting
-rw-r--r-- | ui/app/info.js | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/ui/app/info.js b/ui/app/info.js index e8470de97..38576b284 100644 --- a/ui/app/info.js +++ b/ui/app/info.js @@ -20,7 +20,11 @@ InfoScreen.prototype.render = function () { const version = global.platform.getVersion() return ( - h('.flex-column.flex-grow', [ + h('.flex-column.flex-grow', { + style: { + maxWidth: '400px', + }, + }, [ // subtitle and nav h('.section-title.flex-row.flex-center', [ @@ -103,6 +107,7 @@ InfoScreen.prototype.render = function () { target: '_blank', }, 'Need Help? Read our FAQ!'), ]), + h('div', [ h('a', { href: 'https://metamask.io/', @@ -120,6 +125,7 @@ InfoScreen.prototype.render = function () { h('div.info', 'Visit our web site'), ]), ]), + h('div.fa.fa-slack', [ h('a.info', { href: 'http://slack.metamask.io', @@ -127,11 +133,13 @@ InfoScreen.prototype.render = function () { }, 'Join the conversation on Slack'), ]), - h('div.fa.fa-twitter', [ - h('a.info', { - href: 'https://twitter.com/metamask_io', - target: '_blank', - }, 'Follow us on Twitter'), + h('div', [ + h('.fa.fa-twitter', [ + h('a.info', { + href: 'https://twitter.com/metamask_io', + target: '_blank', + }, 'Follow us on Twitter'), + ]) ]), h('div.fa.fa-envelope', [ |