Skip to content

Commit 403a1e7

Browse files
committed
Fix form hover/active states
1 parent adcd268 commit 403a1e7

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

resources/assets/styles/components/forms.css

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,15 @@ input[type=number] {
5050
}
5151

5252
.input-dark {
53-
@apply .p-3 .bg-neutral-600 .border .border-neutral-500 .text-sm .rounded .text-neutral-200;
53+
@apply .p-3 .bg-neutral-600 .border .border-neutral-500 .text-sm .rounded .text-neutral-200 .shadow-none;
5454
transition: border 150ms linear, box-shaodw 150ms ease-in;
5555

5656
&:focus {
57-
@apply .shadow;
57+
@apply .shadow-md .border-neutral-400;
58+
}
59+
60+
&:hover {
61+
@apply .border-neutral-400;
5862
}
5963

6064
& + .input-help {

0 commit comments

Comments
 (0)