-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
39 lines (38 loc) · 890 Bytes
/
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 lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/src/assets/favicon.svg" />
<link rel="manifest" href="/manifest.json" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
/>
<meta
name="theme-color"
media="(prefers-color-scheme: light)"
content="#1976d2"
/>
<meta
name="theme-color"
media="(prefers-color-scheme: dark)"
content="#272727"
/>
<style>
body {
background-color: #fff;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #121212;
}
}
</style>
<title>ascii-pay</title>
</head>
<body>
<div id="root"></div>
<div id="modal"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>