fix: tried to fix scrolling in mobile

This commit is contained in:
florian 2024-05-29 00:10:59 +02:00
parent 6995f9840f
commit 5ef517e4ae
2 changed files with 10 additions and 1 deletions

View File

@ -3,7 +3,8 @@
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/bouquet.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<title>bouquet</title>
</head>
<body>

View File

@ -5,3 +5,11 @@
body:has(dialog[open]) {
overflow: hidden;
}
body {
overflow-x: hidden;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}