Skip to content

Commit b649f5f

Browse files
committed
Fixed arrow keys on input in Firefox (#31)
1 parent c8e93bd commit b649f5f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/styles/_core.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@
5252
textarea,
5353
input,
5454
label {
55-
-webkit-user-select: all;
56-
-moz-user-select: all;
57-
-ms-user-select: all;
58-
user-select: all;
55+
-webkit-user-select: text;
56+
-moz-user-select: text;
57+
-ms-user-select: text;
58+
user-select: text;
5959
}
6060
}

0 commit comments

Comments
 (0)