mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-19 19:21:15 -05:00
fix: auto zoom on ios (#4502)
This commit is contained in:
committed by
GitHub
parent
e508159255
commit
bd8724c1e2
@@ -1,3 +1,13 @@
|
||||
import { Viewport } from "next";
|
||||
|
||||
export const viewport: Viewport = {
|
||||
width: "device-width",
|
||||
initialScale: 1.0,
|
||||
maximumScale: 1.0,
|
||||
userScalable: false,
|
||||
viewportFit: "contain",
|
||||
};
|
||||
|
||||
const SurveyLayout = ({ children }) => {
|
||||
return <div className="h-dvh">{children}</div>;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user