diff options
Fix button width transition bug
Fixes #160
Diffstat (limited to 'ui/app/account-detail.js')
-rw-r--r-- | ui/app/account-detail.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ui/app/account-detail.js b/ui/app/account-detail.js index a876b275f..9edb99e28 100644 --- a/ui/app/account-detail.js +++ b/ui/app/account-detail.js @@ -35,7 +35,11 @@ AccountDetailScreen.prototype.render = function() { return ( - h('.account-detail-section.flex-column.flex-grow', [ + h('.account-detail-section.flex-column.flex-grow', { + style: { + width: '330px', + }, + }, [ // subtitle and nav h('.section-title.flex-row.flex-center', [ |