Update footer.css

This commit is contained in:
NOrtmann1
2026-05-26 10:52:57 +02:00
parent 4d8017aa2b
commit cb1f3f0d07
+4 -2
View File
@@ -1,11 +1,13 @@
/* FooterGrundlayout */
footer {
position: sticky;
top: 100vh; /* Zwingt den Footer an den unteren Rand des sichtbaren Bereichs */
position: relative;
width: 100%;
background: #333d43;
text-align: center;
padding: 10px 0;
/* Berechnet die Resthöhe: 100% Bildschirmhöhe minus geschätzte Inhaltshöhe */
margin-top: calc(100vh - 200px);
}
footer a {