1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-19 19:49:37 +02:00
flame/client/src/components/UI/Modal/Modal.module.css

21 lines
320 B
CSS
Raw Normal View History

2021-05-12 18:31:02 +02:00
.Modal {
width: 100%;
height: 100%;
position: fixed;
2021-05-12 18:31:02 +02:00
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;
}