pwd change Layout korrigiert

This commit is contained in:
Bkolb 2026-03-31 21:46:37 +02:00
parent 7ae7784c85
commit 0d023a503b

View File

@ -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;
}
}