Fortifying works

This commit is contained in:
jude
2023-02-17 12:46:21 +00:00
parent bcbd407d7d
commit 8b5f7df592
5 changed files with 129 additions and 39 deletions

View File

@ -87,7 +87,7 @@
}
.hidden {
display: none;
display: none !important;
}
.east {
@ -114,3 +114,27 @@
align-items: center;
justify-content: center;
}
#modal {
position: fixed;
z-index: 99;
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: rgba(0, 0, 0, 0.2);
}
.modal-content {
display: block;
padding: 12px;
background: white;
}
.button-row {
display: flex;
justify-content: space-between;
margin: 4px;
}