aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/scripts/lib/is-popup-or-notification.js2
-rw-r--r--ui/app/app.js3
2 files changed, 3 insertions, 2 deletions
diff --git a/app/scripts/lib/is-popup-or-notification.js b/app/scripts/lib/is-popup-or-notification.js
index 693fa8751..73a812d5f 100644
--- a/app/scripts/lib/is-popup-or-notification.js
+++ b/app/scripts/lib/is-popup-or-notification.js
@@ -1,6 +1,6 @@
module.exports = function isPopupOrNotification () {
const url = window.location.href
- if (url.match(/popup.html$/)) {
+ if (url.match(/popup.html$/) || url.match(/home.html$/)) {
return 'popup'
} else {
return 'notification'
diff --git a/ui/app/app.js b/ui/app/app.js
index 53801ed52..7a855813f 100644
--- a/ui/app/app.js
+++ b/ui/app/app.js
@@ -214,7 +214,8 @@ App.prototype.renderAppBar = function () {
alignItems: 'center',
visibility: props.isUnlocked ? 'visible' : 'none',
background: '#EFEFEF', // $gallery
- height: '11vh',
+ height: '12vh',
+ maxHeight: '60px',
position: 'relative',
zIndex: 12,
},