-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (48 loc) · 1.5 KB
/
Copy pathindex.html
File metadata and controls
54 lines (48 loc) · 1.5 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, viewport-fit=cover"
/>
<title>Lust Wallet</title>
<link rel="icon" type="image/png" sizes="32x32" href="%BASE_URL%favicon.png" />
<link rel="icon" type="image/png" sizes="192x192" href="%BASE_URL%pwa-192.png" />
<link rel="apple-touch-icon" sizes="180x180" href="%BASE_URL%apple-touch-icon.png" />
<link rel="manifest" href="%BASE_URL%manifest.webmanifest" />
<meta name="theme-color" content="#000000" />
<meta name="application-name" content="Lust Wallet" />
<meta name="apple-mobile-web-app-title" content="Lust Wallet" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta
name="description"
content="Professional multichain wallet for the LUST ecosystem"
/>
<style>
html,
body,
#root {
margin: 0;
min-height: 100%;
width: 100%;
background: #000000;
}
body {
font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
box-sizing: border-box;
}
img {
display: block;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>