27 lines
518 B
CSS
27 lines
518 B
CSS
/* 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;
|
|
}
|
|
|