Bug somewhere
Some checks failed
Build, Push, and Deploy to Nomad / docker-nomad (push) Failing after 4m38s

This commit is contained in:
Henrik Jess
2024-12-17 17:10:37 +01:00
parent 1cb9e066ab
commit 7072e7e099
9 changed files with 122 additions and 146 deletions

View File

@@ -2472,6 +2472,39 @@ button:disabled,
}
}
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.3);
backdrop-filter: blur(8px);
display: flex;
justify-content: center;
align-items: center;
z-index: 999999;
}
.modal-content {
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
width: 400px;
text-align: center;
z-index: 50000;
}
.open {
transform: rotate(15deg);
}
.open_inv {
transform: rotate(-15deg);
}
/* Wrapper */
#wrapper {
display: -moz-flex;

File diff suppressed because one or more lines are too long