1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-22 12:59:36 +02:00

UI Components

This commit is contained in:
unknown 2021-05-12 18:31:02 +02:00
parent fa5c35b619
commit f34bbd938d
10 changed files with 131 additions and 7 deletions

View file

@ -0,0 +1,21 @@
.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;
}