disable select and double-tap zoom on mobile

This commit is contained in:
evanpelle
2024-10-06 13:21:32 -07:00
parent 59036d0b1e
commit ee6824de13
2 changed files with 18 additions and 4 deletions
+16
View File
@@ -1,3 +1,19 @@
html,
body {
touch-action: manipulation;
-ms-touch-action: manipulation;
}
* {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
@font-face {
font-family: 'Overpass';
src: url('/resources/fonts/overpass.woff') format('woff');