33 lines
623 B
Vue
33 lines
623 B
Vue
<template>
|
|
<div class="modal-backdrop">
|
|
<div class="modal-dialog">
|
|
<slot />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script setup lang="ts">
|
|
// No script content needed unless you want to add props or logic
|
|
</script>
|
|
<style scoped>
|
|
.modal-backdrop {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background: rgba(0, 0, 0, 0.35);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 1000;
|
|
}
|
|
.modal-dialog {
|
|
background: #fff;
|
|
padding: 2rem;
|
|
border-radius: 12px;
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
|
|
max-width: 340px;
|
|
text-align: center;
|
|
}
|
|
</style>
|