From 3fa66f044c84d7d914b02b2461a28c52927a8b19 Mon Sep 17 00:00:00 2001 From: elpatron Date: Sun, 31 May 2026 12:06:18 +0200 Subject: [PATCH] Korrigiere Label-Ausrichtung im Backup-Panel. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Labels waren durch text-align:center auf #root zentriert, Inputs linksbündig. Formularfelder nutzen nun block-Labels und konsistenten Abstand. Co-authored-by: Cursor --- client/src/App.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/client/src/App.css b/client/src/App.css index 5132bcf..b2bc2ac 100644 --- a/client/src/App.css +++ b/client/src/App.css @@ -4127,6 +4127,26 @@ html.theme-cupertino .events-scroll-container { border: 1px solid rgba(148, 163, 184, 0.25); } +.backup-panel { + text-align: left; +} + +.backup-export-form, +.backup-import-form { + display: flex; + flex-direction: column; + gap: 16px; +} + +.backup-panel .input-group label { + display: block; + font-size: 13.5px; + color: var(--app-text-muted); + margin-bottom: 6px; + font-weight: 500; + text-align: left; +} + .backup-panel .backup-section { margin-bottom: 28px; padding-bottom: 24px;