feat: improve mobile support on ios (#99)

* fix: add min width to dashboard

* fix: display theme background and set dynamic viewport height

* fix: prevent zooming on ios

* fix: enable scroll on card page
This commit is contained in:
Henry
2025-07-03 09:12:06 +01:00
committed by GitHub
parent ec1b5d5acb
commit 392be38f10
4 changed files with 20 additions and 9 deletions

View File

@@ -4,6 +4,10 @@ export const PageHead = ({ title }: { title: string }) => {
return (
<Head>
<title>{title}</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1"
/>
</Head>
);
};