Files
myep/assets/styles/components/forms.css
T

28 lines
515 B
CSS

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[readonly],
select[readonly] {
@apply pointer-events-none;
}