forked from aragon/app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (63 loc) · 1.76 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/src/public/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/src/public/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/src/public/favicon-16x16.png"
/>
<link rel="manifest" href="/src/public/site.webmanifest" />
<link
rel="mask-icon"
href="/src/public/safari-pinned-tab.svg"
color="#3164fa"
/>
<meta name="msapplication-TileColor" content="#3164fa" />
<meta name="theme-color" content="#ffffff" />
<meta name="app-version" content="%VITE_REACT_APP_DEPLOY_VERSION%" />
<link
href="https://fonts.googleapis.com/css2?family=Syne:wght@700&display=swap"
rel="stylesheet"
/>
<style>
* {
font-weight: 500;
}
body {
background-color: #f5f7fa;
}
/* Web3Modal comes with a default setting of z-index: 2. This conflicts with
other parts of the application. Namely the navbars, which have a z-index of 10
(tailwind class z-10). Fixin the global css od the modal seems to be the
recommended solution:
https://github.com/Web3Modal/web3modal/issues/165#issuecomment-938666905 */
.web3modal-modal-lightbox {
z-index: 20 !important;
}
#fullscreen-editor {
position: absolute;
z-index: 10;
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Aragon App</title>
<meta name="description" content="Aragon App" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>