Fix form hover/active states

This commit is contained in:
Dane Everitt 2019-06-22 18:58:07 -07:00
parent adcd2682ef
commit 403a1e79fa
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53

View file

@ -50,11 +50,15 @@ input[type=number] {
}
.input-dark {
@apply .p-3 .bg-neutral-600 .border .border-neutral-500 .text-sm .rounded .text-neutral-200;
@apply .p-3 .bg-neutral-600 .border .border-neutral-500 .text-sm .rounded .text-neutral-200 .shadow-none;
transition: border 150ms linear, box-shaodw 150ms ease-in;
&:focus {
@apply .shadow;
@apply .shadow-md .border-neutral-400;
}
&:hover {
@apply .border-neutral-400;
}
& + .input-help {