18 lines
306 B
CSS
18 lines
306 B
CSS
form {
|
|
textarea,
|
|
input {
|
|
@apply !border-neutral-400;
|
|
}
|
|
|
|
input:not([type='checkbox']):not([type='radio']) {
|
|
@apply !rounded-lg !py-6;
|
|
}
|
|
|
|
legend {
|
|
@apply !font-bold !text-neutral-900 !text-lg;
|
|
}
|
|
label {
|
|
@apply !text-neutral-700 !text-base !font-medium;
|
|
}
|
|
}
|