This commit is contained in:
insvrgent
2024-12-27 15:58:47 +07:00
parent 675f4f2c42
commit 47bb8b40c8
5 changed files with 82 additions and 91 deletions

View File

@@ -0,0 +1,27 @@
/* src/components/AccountUpdateModal.module.css */
.modalOverlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
z-index: 101;
}
.modalContent {
background: white;
padding: 20px;
border-radius: 10px;
max-width: 500px;
width: 100%;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
position: relative;
z-index: 11;
color: black;
}