Verbessere das Layout des Worship Management-Formulars: Ändere das Layout von Flexbox zu Grid, optimiere die Stile für Labels, Eingabefelder und Schaltflächen, um eine bessere Benutzererfahrung zu gewährleisten.

This commit is contained in:
Torsten Schulz (local)
2025-10-07 17:18:37 +02:00
parent 156d89a45d
commit 3af7089e06

View File

@@ -464,18 +464,39 @@ export default {
}
form {
display: flex;
flex-direction: column;
display: grid;
grid-template-columns: 180px 1fr;
gap: 15px 20px;
align-items: start;
}
label {
form > label {
margin: 0;
padding-top: 8px;
text-align: right;
font-weight: 500;
}
form > input[type="text"],
form > input[type="date"],
form > input[type="time"],
form > .multiselect,
form > .liturgical-day-section {
width: 100%;
max-width: 500px;
}
form > input[type="checkbox"] {
justify-self: start;
margin-top: 8px;
}
form > button {
grid-column: 1 / -1;
justify-self: start;
margin-top: 10px;
}
button {
margin-top: 20px;
}
.filter-section {
margin: 30px 0 20px;
padding: 15px;
@@ -534,6 +555,7 @@ button {
display: flex;
flex-direction: column;
gap: 10px;
max-width: 500px;
}
.liturgical-loader {