Add profile picture support to account, login, and register pages

This commit is contained in:
Fabian Schieder 2026-01-25 17:59:23 +01:00
parent 8e9246f66e
commit c9d953fca5

View File

@ -41,9 +41,19 @@
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, "Helvetica Neue", Arial, sans-serif;
background: var(--bg-main); !important;
color: var(--text-main); !important;
background: var(--bg-main) !important;
color: var(--text-main) !important;
line-height: 1.45;
/* Sticky-Footer Basis: Inhalt wächst, Footer wird nach unten gedrückt */
min-height: 100vh;
display: flex;
flex-direction: column;
}
/* Optional: falls ihr <main> nutzt, wächst es im Flex-Layout */
main {
flex: 1 0 auto;
}
/* ==========================================================
@ -406,7 +416,9 @@ body {
FOOTER
========================================================== */
.footer {
margin-top: 3rem;
/* Entfernt das alte spacing und macht den Footer 'sticky' */
margin-top: auto;
background: var(--bg-header);
color: rgba(255, 255, 255, 0.85);
border-top: 1px solid rgba(255, 255, 255, 0.08);