30 lines
568 B
CSS
30 lines
568 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;
|
|
}
|
|
|
|
select[readonly] {
|
|
@apply pointer-events-none cursor-not-allowed;
|
|
}
|
|
input[readonly] {
|
|
@apply cursor-not-allowed;
|
|
}
|