refactor: new z-index on message and notification

This commit is contained in:
07akioni 2019-07-26 16:33:58 +08:00
parent 42d0d575c6
commit 21dcbb4649
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ function attachMessageContainer () {
messageContainer = document.createElement('div')
messageContainer.classList.add('n-message', 'n-message__container')
messageContainer.style = `
z-index: 300;
z-index: 6000;
position: fixed;
left: 0;
right: 0;

View File

@ -8,7 +8,7 @@ function attachNotificationContainer () {
notificationContainer = document.createElement('div')
notificationContainer.classList.add('n-notification', 'n-notification__container')
notificationContainer.style = `
z-index: 300;
z-index: 4000;
position: fixed;
left: 0;
right: 15px;