fix: Disabled pinch to zoom on mobile devices#9155 (#9163)
* Disabled pinch to zoom on mobile devices#9155 * Modified the better fix to the feature * Update apps/web/pages/_document.tsx * Update apps/web/pages/_document.tsx * Update apps/web/styles/globals.css * Update apps/web/pages/_document.tsx * Update apps/web/pages/_document.tsx * Update apps/web/pages/_document.tsx --------- Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: Peer Richelsen <peer@cal.com> Co-authored-by: Keith Williams <keithwillcode@gmail.com>pull/9344/head^2
parent
f31165b442
commit
eafd7f6b77
|
@ -48,6 +48,10 @@ class MyDocument extends Document<Props> {
|
|||
<meta name="msapplication-TileColor" content="#ff0000" />
|
||||
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#f9fafb" />
|
||||
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#1C1C1C" />
|
||||
<meta
|
||||
name="viewport"
|
||||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
|
||||
/>
|
||||
</Head>
|
||||
|
||||
<body
|
||||
|
|
Loading…
Reference in New Issue