update csss: increase border by 50px
chore: add line break to names
chore: restyle the dateselector to use same design as other fields
This commit is contained in:
2025-11-19 18:27:17 +01:00
parent 36b968998e
commit 85ba0bf07c
2 changed files with 15 additions and 6 deletions

View File

@@ -89,7 +89,7 @@ body {
/* Layout */
.container {
max-width: 1200px;
max-width: 1250px;
margin: 0 auto;
padding: 0 20px;
}
@@ -165,6 +165,7 @@ h2 {
input[type="text"],
input[type="email"],
input[type="number"],
input[type="date"],
select,
textarea {
width: 100%;
@@ -178,6 +179,14 @@ textarea {
font-family: inherit;
}
/* Normalize date input appearance */
input[type="date"] {
-webkit-appearance: none;
appearance: none;
font-family: inherit;
/* Ensure text is legible and consistent */
}
textarea {
resize: vertical;
min-height: 80px;