Los estilos del Modal.vue
<style scoped>
.modal {
min-width: 350px;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
z-index: 2000;
@apply absolute bg-white p-4 shadow-lg rounded;
}
.modal > .modal-head {
@apply relative;
}
.modal-wrapper::after {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: rgba(37, 37, 37, 0.8);
}
</style>
¿Quieres ver más aportes, preguntas y respuestas de la comunidad?