Position des Footers bei kleineren Displays korrigiert
Deploy Website / deploy (push) Successful in 3s

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
Florian Otto
2026-04-29 13:51:14 +02:00
co-authored by Copilot
parent 7e74f8843e
commit 03705bf1bc
+8 -2
View File
@@ -52,8 +52,7 @@ body {
footer { footer {
width: 100%; width: 100%;
position: fixed; margin-top: var(--spacing-lg);
bottom: 0px;
text-align: center; text-align: center;
} }
@@ -415,6 +414,13 @@ nav ol {
} }
} }
@media (min-height: 920px) {
footer {
position: fixed;
bottom: 0px;
}
}
/* --- Sehr große Geräte (Große Desktops, ab 1200px) --- */ /* --- Sehr große Geräte (Große Desktops, ab 1200px) --- */
@media (min-width: 1200px) { @media (min-width: 1200px) {
.container { .container {