Skip to content
This repository was archived by the owner on Mar 7, 2026. It is now read-only.

Commit 8ad8462

Browse files
authored
Merge pull request #1 from nab138/main
Fix input
2 parents e5d3774 + 7101f1c commit 8ad8462

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

src/App.css

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,20 @@
2727

2828
* {
2929
box-sizing: border-box;
30-
/* TODO: Find solution that doesn't break inputs */
31-
/* -webkit-user-select: none; */
30+
-webkit-user-select: none;
3231
-moz-user-select: none;
3332
-ms-user-select: none;
3433
user-select: none;
3534
}
3635

36+
input,
37+
textarea {
38+
-webkit-user-select: text;
39+
-moz-user-select: text;
40+
-ms-user-select: text;
41+
user-select: text;
42+
}
43+
3744
body {
3845
margin: 0;
3946
min-height: 100vh;

0 commit comments

Comments
 (0)