forked from sparrowapp-dev/sparrow-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
35 lines (33 loc) · 816 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
<!doctype html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/svg+xml"
href="/src/lib/assets/sparrow-favicon.svg"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sparrow App</title>
<link rel="stylesheet" href="./src/packages/@app/components/styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
</head>
<style>
#app {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
}
</style>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
<div id="code-editor"></div>
</body>
</html>