-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
56 lines (49 loc) · 1.46 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
<!DOCTYPE html>
<!-- VITE JS DEV MODE START INDEX -->
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Vite Dev</title>
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<link rel="alternate icon" href="/favicon.ico" type="image/png" sizes="16x16" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180" />
<meta name="theme-color" content="#ffffff" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<style>
.topbar {
height: 32px;
background: #424242;
}
.sidebar {
width: 160px;
height: 100vh;
position: fixed;
top: 0;
left: 0;
height: 100%;
background: #424242;
transition: width 0.3s ease-out;
}
.wrapper {
margin-left: 160px;
top: 32px;
height: calc(100vh - 32px);
transition: margin-left 0.3s ease-out;
}
</style>
</head>
<body>
<div class="topbar"></div>
<div class="sidebar"></div>
<div class="wrapper">
<div id="bit-apps-root"></div>
</div>
<script type="module" src="/frontend/src/main.tsx"></script>
</body>
</html>