-
-
Notifications
You must be signed in to change notification settings - Fork 294
/
index.html
40 lines (36 loc) · 905 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
40
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Mind Elixir</title>
<link rel="stylesheet" href="./katex.css">
<link rel="stylesheet" href="./index.css">
<style>
/* test tailwind compatibility */
*,
::before,
::after {
box-sizing: border-box;
border-width: 0;
border-style: solid;
border-color: #e5e7eb;
}
#map,
#map2 {
margin-top: 50px;
height: 800px;
width: 100%;
}
</style>
</head>
<body>
<div id="map"></div>
<!-- test transform compatibility -->
<div style="transform: translateX(30px) translateY(20px);">
<div id="map2"></div>
</div>
<script type="module" src="/src/dev.ts"></script>
</body>
</html>