28 lines
372 B
CSS
28 lines
372 B
CSS
.Modal {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background-color: rgba(0, 0, 0, 0.65);
|
|
z-index: 2000;
|
|
}
|
|
|
|
.ModalContent {
|
|
position: fixed;
|
|
width: auto;
|
|
height: auto;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
z-index: 2001;
|
|
}
|
|
|
|
.Modal.Critical {
|
|
z-index: 2100;
|
|
}
|
|
|
|
.ModalContent.Critical {
|
|
z-index: 2101;
|
|
}
|