16 lines
336 B
CSS
16 lines
336 B
CSS
@layer components {
|
|
input[type=text], input[type=email], input[type=password],
|
|
input[type=number], select {
|
|
@apply mt-1 rounded-md bg-gray-100 focus:bg-white
|
|
border-transparent focus:border-gray-500 focus:ring-0;
|
|
}
|
|
|
|
.field_with_errors {
|
|
@apply inline-block;
|
|
}
|
|
|
|
.error-msg {
|
|
@apply text-red-700;
|
|
}
|
|
}
|