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:
@@ -464,18 +464,39 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
form {
|
form {
|
||||||
display: flex;
|
display: grid;
|
||||||
flex-direction: column;
|
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;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
button {
|
|
||||||
margin-top: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.filter-section {
|
.filter-section {
|
||||||
margin: 30px 0 20px;
|
margin: 30px 0 20px;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
@@ -534,6 +555,7 @@ button {
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
|
max-width: 500px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.liturgical-loader {
|
.liturgical-loader {
|
||||||
|
|||||||
Reference in New Issue
Block a user