debug modus im HTML eingebaut
All checks were successful
Docker Release Build / push_to_registry (push) Successful in 56s

This commit is contained in:
Florian Walther
2026-02-09 18:13:13 +01:00
parent 25f5fae505
commit 3101529fa7
3 changed files with 87 additions and 6 deletions

View File

@@ -211,3 +211,27 @@ a:hover {
text-decoration: underline;
}
.debug-banner {
position: absolute;
top: 1rem;
left: 4rem;
font-size: 1.2rem;
border-radius: 4px;
border: 1px solid var(--border-color);
}
.debug-only {
display: none;
}
.debug-footer {
position: absolute;
bottom: 4em;
left: 0;
}
body.is-debug .debug-only {
display: inline-block;
border: 1px dashed red;
}