fix: auto zoom on ios (#4502)

This commit is contained in:
Dhruwang Jariwala
2024-12-19 13:48:10 +05:30
committed by GitHub
parent e508159255
commit bd8724c1e2

View File

@@ -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>;
};