mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-21 12:29:36 +02:00
21 lines
323 B
CSS
21 lines
323 B
CSS
|
.Modal {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
z-index: 100;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.ModalClose {
|
||
|
background-color: rgba(0, 0, 0, 0);
|
||
|
visibility: hidden;
|
||
|
}
|
||
|
|
||
|
.ModalOpen {
|
||
|
background-color: rgba(0, 0, 0, 0.7);
|
||
|
visibility: visible;
|
||
|
}
|