34 lines
634 B
CSS
34 lines
634 B
CSS
/* src/components/Modal.module.css */
|
|
.modalOverlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.modalContent {
|
|
background: white;
|
|
padding: 20px;
|
|
border-radius: 5px;
|
|
width: 500px;
|
|
max-width: 100%;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
position: relative;
|
|
}
|
|
|
|
.closeButton {
|
|
margin-top: 20px;
|
|
background: #f44336;
|
|
color: white;
|
|
border: none;
|
|
padding: 10px;
|
|
cursor: pointer;
|
|
border-radius: 5px;
|
|
}
|
|
|