diff options
Make main account detail view more responsive
Diffstat (limited to 'responsive-ui/app/account-detail.js')
-rw-r--r-- | responsive-ui/app/account-detail.js | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/responsive-ui/app/account-detail.js b/responsive-ui/app/account-detail.js index da1ddf98b..b39252db6 100644 --- a/responsive-ui/app/account-detail.js +++ b/responsive-ui/app/account-detail.js @@ -51,7 +51,12 @@ AccountDetailScreen.prototype.render = function () { return ( - h('.account-detail-section', [ + h('.account-detail-section', { + style: { + height: '100%', + maxWidth: '850px', + }, + }, [ // identicon, label, balance, etc h('.account-data-subsection', { @@ -236,7 +241,9 @@ AccountDetailScreen.prototype.subview = function () { AccountDetailScreen.prototype.tabSections = function () { const { currentAccountTab } = this.props - return h('section.tabSection', [ + return h('section.tabSection', { + style: { height: '100%' }, + }, [ h(TabBar, { tabs: [ |