diff options
-rw-r--r-- | responsive-ui/app/account-detail.js | 4 | ||||
-rw-r--r-- | responsive-ui/app/css/lib.css | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/responsive-ui/app/account-detail.js b/responsive-ui/app/account-detail.js index 95e7c554a..ad65bf1d3 100644 --- a/responsive-ui/app/account-detail.js +++ b/responsive-ui/app/account-detail.js @@ -240,7 +240,9 @@ AccountDetailScreen.prototype.tabSections = function () { const { currentAccountTab } = this.props return h('section.tabSection', { - style: { height: '100%' }, + style: { + height: '100%', + }, }, [ h(TabBar, { diff --git a/responsive-ui/app/css/lib.css b/responsive-ui/app/css/lib.css index 910a24ee2..b0ca958a2 100644 --- a/responsive-ui/app/css/lib.css +++ b/responsive-ui/app/css/lib.css @@ -232,6 +232,10 @@ hr.horizontal-line { align-items: center; } +.tabSection { + min-width: 350px; +} + .menu-icon { display: inline-block; height: 9px; |