Ensure app-header is rendered in responsive layout

feature/default_network_editable
sdtsui 7 years ago
parent 49e3713704
commit 61b4b1f947
  1. 2
      app/scripts/lib/is-popup-or-notification.js
  2. 3
      ui/app/app.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'

@ -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,
},

Loading…
Cancel
Save