diff --git a/app/flask-postgres/styles/site.css b/app/flask-postgres/styles/site.css index 06d2570..e83d8ec 100644 --- a/app/flask-postgres/styles/site.css +++ b/app/flask-postgres/styles/site.css @@ -188,19 +188,7 @@ p { BUTTONS ========================= */ -.btn-primary { - display: inline-block; - margin-top: 12px; - padding: 10px 16px; - border-radius: 8px; - - background: #125eb0; - color: #ffffff; - - text-decoration: none; - font-weight: 600; -} /* ========================= IMAGE PANEL @@ -388,8 +376,9 @@ p { .admin-actions { display: flex; - gap: 12px; margin-top: 16px; + gap: 16px; + align-items: center; /* 🔥 wichtig */ } .btn-danger { @@ -428,13 +417,29 @@ p { border-radius: 10px; } +.btn-primary, .btn-secondary { - display: inline-block; - padding: 12px 18px; - border-radius: 10px; - background: #eef4fb; - color: #0d2f57; + display: inline-flex; + align-items: center; + justify-content: center; + + height: 48px; /* 🔥 gleiche Höhe */ + padding: 0 20px; /* 🔥 vertikal rausnehmen */ + + border-radius: 12px; font-weight: 700; text-decoration: none; + box-sizing: border-box; +} + +.btn-primary { + background: #1f5ea8; + color: #fff; + border: 1px solid #1f5ea8; +} + +.btn-secondary { + background: #eef4fb; + color: #0d2f57; border: 1px solid #dce3ea; -} \ No newline at end of file +}