Skip to content

Commit

Permalink
Fixed arrow keys on input in Firefox (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
andersevenrud committed Dec 5, 2018
1 parent c8e93bd commit b649f5f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/styles/_core.scss
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@
textarea,
input,
label {
-webkit-user-select: all;
-moz-user-select: all;
-ms-user-select: all;
user-select: all;
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}
}

0 comments on commit b649f5f

Please sign in to comment.