Abstand zwischen Formular und Button-Zeile in den Auth-Panels

ul.actions bringt keinen oberen Abstand mit, deshalb klebte die
Button-Zeile direkt am letzten Eingabefeld - im Login besonders
sichtbar, seit das Kundenkuerzel-Feld entfallen ist. Die Regel ist auf
.public-auth beschraenkt, damit die CTA-Panels der Landingpage ihr
Layout behalten.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-23 21:09:17 +02:00
co-authored by Claude Opus 5
parent 47dff5a1ca
commit 27292470f6
+9
View File
@@ -265,6 +265,15 @@ body.public-page {
margin-bottom: 0; margin-bottom: 0;
} }
/* ul.actions bringt von Haus aus keinen oberen Abstand mit (main.css setzt
nur margin-left/padding-left), deshalb klebte die Button-Zeile direkt am
letzten Eingabefeld. Bewusst auf .public-auth beschraenkt: das sind die
Formularpanels (Login, Registrierung, Passwort), waehrend die CTA-Panels
auf der Landingpage ihr enges Layout behalten. */
.public-auth .public-panel .actions {
margin-top: 1.5em;
}
.public-steps .public-feature { .public-steps .public-feature {
position: relative; position: relative;
padding-top: 2.75rem; padding-top: 2.75rem;