-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (35 loc) · 1.56 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 lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<link rel="icon" type="image/svg+xml" href="/src/assets/logo.svg" />
<title>Tauri + Solid + Typescript App</title>
</head>
<body>
<div data-tauri-drag-region class="titlebar">
<h1>
todo<span class="yo-accent">yo.</span>
</h1>
<div class="traffic-lights">
<button class="traffic-light traffic-light-close" id="titlebar-close">
<svg width="7" height="7" fill="none" xmlns="http://www.w3.org/2000/svg">
<path stroke="#000" stroke-width="1.2" stroke-linecap="round" d="M1.182 5.99L5.99 1.182M5.99 6.132L1.182 1.323" />
</svg></button>
<button class="traffic-light traffic-light-minimize" id="titlebar-minimize">
<svg width="7" height="2" fill="none" xmlns="http://www.w3.org/2000/svg">
<path stroke="#000" stroke-width="1.2" stroke-linecap="round" d="M.61.703h5.8" />
</svg></button>
<button class="traffic-light traffic-light-maximize" id="titlebar-maximize">
<svg width="8" height="7" fill="none" xmlns="http://www.w3.org/2000/svg">
<path stroke="#000" stroke-width="1.2" stroke-linecap="round" d="M1.1 3.4h5.8M3.9 6.4V.6" />
</svg>
</button>
</div>
</div>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script src="/src/index.tsx" type="module"></script>
</body>
</html>