All checks were successful
continuous-integration/drone/push Build is passing
Not sending the right response codes for Turbo to handle.
21 lines
461 B
CSS
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;
|
|
}
|
|
}
|