16 lines
297 B
CSS
16 lines
297 B
CSS
.modal-container {
|
|
top: 0;
|
|
left: 0;
|
|
position: absolute;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100%;
|
|
width: 100%;
|
|
background-color: rgba(0,0,0,0.2);
|
|
}
|
|
.modal-content {
|
|
width: 80%;
|
|
height: 90%;
|
|
background-color: white;
|
|
} |