Râu Cao f050d010fd
All checks were successful
continuous-integration/drone/push Build is passing
Refactor admin donation pages, fix errors
Not sending the right response codes for Turbo to handle.
2023-03-15 15:24:00 +07:00

21 lines
461 B
CSS

@layer components {
input[type=text], input[type=email], input[type=password],
input[type=number], select, textarea {
@apply rounded-md bg-gray-100 focus:bg-white
border-transparent focus:border-transparent focus:ring-2
focus:ring-blue-600 focus:ring-opacity-75;
}
.field_with_errors {
@apply inline-block;
}
.field_with_errors input {
@apply w-full bg-red-100;
}
.error-msg {
@apply text-red-700;
}
}