fix: replace type=time with text inputs to force 24h HH:MM format (no AM/PM)
Some checks failed
Build & Push Docker / build (push) Has been cancelled

This commit is contained in:
2026-02-20 18:22:48 +01:00
parent 624157ef57
commit f3e2ae2cda
3 changed files with 57 additions and 2 deletions

View File

@@ -1004,3 +1004,15 @@ body {
.hidden {
display: none !important;
}
/* Time text inputs (replacing type=time to avoid AM/PM) */
.time-input {
font-variant-numeric: tabular-nums;
letter-spacing: 0.5px;
text-align: center;
}
.time-input.input-error {
border-color: var(--danger) !important;
background: #fff5f5;
}