-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (35 loc) · 892 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" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ODS Vanilla Playground</title>
<style>
html, body {
margin: 0;
height: 100vh;
}
li,
ul {
margin: 0;
padding: 0;
}
a {
text-decoration: none;
}
* {
box-sizing: border-box;
font-family: var(--ods-font-family-default);
}
</style>
</head>
<body>
<div id="app" class="app"></div>
<div id="app-layout" class="app__layout">
<app-header class="app__layout__header"></app-header>
<app-side-menu class="app__layout__side-menu"></app-side-menu>
</div>
<script type="module" src="/src/app/app.ts"></script>
</body>
</html>