Skip to content

Commit

Permalink
feat: Try to stop pinch to zoom on web mobile (#1452)
Browse files Browse the repository at this point in the history
  • Loading branch information
NigelBreslaw authored Apr 29, 2024
1 parent 0c9f54f commit fba00c8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion native/ReleaseNotes/whatsnew-en
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Header icons to change character.
Transfer buttons gain character name.
Various other UI tweaks.
manifest.json..
manifest.json...
10 changes: 10 additions & 0 deletions native/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,16 @@
background-color: #171321;
}

html, body {
width: 100%;
height: 100%;
position: fixed;
overflow: hidden;
overscroll-behavior: none;
-webkit-overflow-scrolling: touch;
touch-action: none;
}

/* Enable for apps that support dark-theme */
/*@media (prefers-color-scheme: dark) {
body {
Expand Down

0 comments on commit fba00c8

Please sign in to comment.