FEAT-1: Tiere create/edit form (German labels, validation, GEN-1 genotype check) + nested routes

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-05 23:58:10 +02:00
parent e9f88b7889
commit e077766cc5
3 changed files with 378 additions and 1 deletions

View File

@@ -431,3 +431,29 @@ textarea {
white-space: nowrap;
border: 0;
}
/* ── Form ────────────────────────────────────────────────────── */
.form {
display: flex;
flex-direction: column;
gap: 1rem;
max-width: 32rem;
margin-top: 1rem;
}
.form .field > span {
font-size: 0.85rem;
color: var(--color-text-muted);
}
.error-text {
color: #b54a4a;
font-size: 0.8rem;
}
.form-actions {
display: flex;
gap: 0.75rem;
margin-top: 0.5rem;
}