forked from ddbrx/sheety
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 1.09 KB
/
index.html
File metadata and controls
35 lines (35 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" />
<title>Even Hub Minimal</title>
<style>
html, body {
margin: 0;
height: 100%;
/* ER brand dark-theme surface (#232323) + Neutral-200 text (#E5E5E5). */
background: #232323;
color: #E5E5E5;
font: 14px/1.4 -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
/* Kill WebView zoom + iOS auto-sizing + rubber-band scroll. */
touch-action: manipulation;
-webkit-text-size-adjust: 100%;
overscroll-behavior: none;
}
#app {
display: flex;
height: 100%;
align-items: center;
justify-content: center;
padding: 24px;
box-sizing: border-box;
text-align: center;
}
</style>
</head>
<body>
<div id="app">Companion app is running. Check the glasses display.</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>