Update iOS disable touch callout and user select

This commit is contained in:
advplyr
2023-03-04 17:15:48 -06:00
parent f28405081a
commit 1ea984b915
4 changed files with 18 additions and 8 deletions
+13
View File
@@ -2,6 +2,19 @@
@import './defaultStyles.css';
@import './absicons.css';
* {
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
}
input,
textarea {
-webkit-touch-callout: auto;
-webkit-user-select: auto;
user-select: auto;
}
body {
background-color: #262626;
}