Clean up templates and CSS

- season.html.twig: remove dead empty column, drop redundant flex-row
- tab_overview.html.twig: extract Twig macro for confirm modals, fix duplicate aria-labelledby IDs
- tab_result.html.twig: remove dead comment, replace inline widths with CSS classes, simplify nested row/col forms to d-flex gap-1
- backoffice.scss: add col-result-xs/sm/md column width classes
- quiz.scss: replace broken display:grid + justify-self:center with flexbox centering
This commit is contained in:
2026-07-01 18:32:57 +02:00
parent cd63ef339f
commit d8b671046b
5 changed files with 69 additions and 83 deletions
+9 -6
View File
@@ -1,14 +1,17 @@
html, body {
html {
height: 100%;
}
body {
min-height: 100%;
background-image: url("../img/background.png");
background-position: center center;
background-position: center;
background-repeat: no-repeat;
background-color: black;
color: white;
display: grid;
align-items: center;
justify-self: center;
display: flex;
flex-direction: column;
justify-content: center;
}
.elimination-screen {