-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 1.05 KB
/
index.html
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
36
37
38
39
<!doctype html>
<html>
<head>
<meta charSet="utf-8"/>
<meta httpEquiv="x-ua-compatible" content="ie=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes"/>
<title>Hello App Display Name</title>
<style>
html {
font-family: proxima-nova, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
}
html, body, #root {
height: 100%;
width: 100%;
margin: 0;
display: flex;
background: #000;
overflow-y: hidden;
-webkit-tap-highlight-color: transparent;
-webkit-font-smoothing: antialiased;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
a {text-decoration: none}
svg {display: block}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="./src/index.web.ts"></script>
</body>
</html>