We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0c1185 commit d1cbab4Copy full SHA for d1cbab4
webApp/src/jsMain/resources/index.html
@@ -2,8 +2,25 @@
2
<html lang="en">
3
<head>
4
<meta charset="UTF-8">
5
- <title>Shopping By KMP</title>
+ <title>Shopping-by-KMP</title>
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Important! -->
7
<script src="skiko.js"></script>
8
+ <style>
9
+ html, body {
10
+ margin: 0;
11
+ padding: 0;
12
+ overflow: hidden;
13
+ height: 100%;
14
+ width: 100%;
15
+ }
16
+
17
+ canvas {
18
+ display: block;
19
+ width: 100vw;
20
+ height: 100vh;
21
+ touch-action: none; /* optional fix for weird touch scrolling */
22
23
+ </style>
24
</head>
25
<body>
26
<canvas id="ComposeTarget"></canvas>
0 commit comments