vue-slim-modal
Version:
Slim modal component for Vue.js
37 lines (32 loc) • 526 B
CSS
.modal-overlay, .modal-wrapper {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.modal-overlay {
z-index: 9990;
background: black;
opacity: .4;
}
.modal-wrapper {
z-index: 9999;
overflow: auto;
}
.modal {
position: absolute;
top: 100px;
left: 50%;
max-width: 80%;
transform: translateX(-50%);
padding: 10px;
background-color: white;
overflow: auto;
z-index: 9999;
margin-bottom: 20px;
}
.modal.modal__center {
top: 50%;
transform: translateX(-50%) translateY(-50%);
}