feat: adopt main website styles

This commit is contained in:
Björn Fromme
2024-12-04 09:33:09 +01:00
parent 273db3bdb7
commit 2454cfa682
17 changed files with 274 additions and 159 deletions
+22
View File
@@ -2,3 +2,25 @@ label.required:after {
@apply inline-block text-sm;
content: '*';
}
.form-field {
@apply border-zinc-400 focus:border-zinc-800 ring-0 focus:ring-0 mt-1 block w-full;
}
.form-field--has-error {
@apply border-red-500;
}
.form-checkbox,
.form-radio {
@apply border-zinc-400 focus:border-zinc-800 ring-0 focus:ring-0 text-secondary h-4 w-4;
}
.form-checkbox--has-error,
.form-radio--has-error {
@apply border-red-500;
}
input[disabled] {
@apply cursor-not-allowed;
}