diff options
author | Dan <danjm.com@gmail.com> | 2018-02-21 09:04:55 +0800 |
---|---|---|
committer | Dan <danjm.com@gmail.com> | 2018-02-21 09:14:17 +0800 |
commit | b1b97727313eaa3a375541e85f43b5f2253ad6de (patch) | |
tree | 66f334e07687918f664585e26ec359aeb182c266 | |
parent | 66f55f954e9f3868396e478fd79c4bbd8f8673e5 (diff) | |
download | tangerine-wallet-browser-b1b97727313eaa3a375541e85f43b5f2253ad6de.tar.gz tangerine-wallet-browser-b1b97727313eaa3a375541e85f43b5f2253ad6de.tar.zst tangerine-wallet-browser-b1b97727313eaa3a375541e85f43b5f2253ad6de.zip |
Fix old-ui active notices width.
-rw-r--r-- | old-ui/app/app.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/old-ui/app/app.js b/old-ui/app/app.js index 61f6223bc..c79ac633a 100644 --- a/old-ui/app/app.js +++ b/old-ui/app/app.js @@ -456,7 +456,9 @@ App.prototype.renderPrimary = function () { // notices if (!props.noActiveNotices) { log.debug('rendering notice screen for unread notices.') - return h('div', [ + return h('div', { + style: { width: '100%' }, + }, [ h(NoticeScreen, { notice: props.lastUnreadNotice, |