errormodal width control

modals^2
Kit Kasune 3 years ago
parent 2d4a086ed6
commit 2e4c3d3d23
  1. 1
      scripts/modal/common/error.js
  2. 2
      styles/modal.css

@ -5,6 +5,7 @@ module.exports = (name, text, after = () => {}) => {
preModal('error-modal');
let modal = document.createElement('div');
modal.className = 'modal';
modal.classList.add('error-modal');
modal.id = 'error-modal';
document.body.appendChild(modal);
let title = document.createElement('h2');

@ -60,6 +60,8 @@
z-index: 2;
}
.error-modal {max-width: 45%;}
.modal-wrapper {
margin: 0 0;
padding: 0 0;

Loading…
Cancel
Save