fix(KB-190): prevent mobile zoom in dashboard
- Add user-scalable=no to viewport meta tag in index.html - Include changeset for the mobile zoom prevention fix
This commit is contained in:
5
.changeset/prevent-mobile-zoom.md
Normal file
5
.changeset/prevent-mobile-zoom.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"@dustinbyrne/kb": patch
|
||||
---
|
||||
|
||||
Prevent pinch-to-zoom on mobile dashboard by adding maximum-scale and user-scalable=no to viewport meta tag.
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
||||
<title>Fusion</title>
|
||||
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
|
||||
<script>
|
||||
|
||||
Reference in New Issue
Block a user