-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (39 loc) · 944 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
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>♾ Infinity scroll in lit-elements</title>
<link rel="icon" type="image/svg+xml" href="/src/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
*,
::after,
::before {
padding: 0;
margin: 0;
box-sizing: border-box;
list-style: none;
text-decoration: none;
}
body {
width: 100%;
min-height: 100vh;
height: 100%;
background-color: rgb(0, 0, 8);
display: flex;
justify-content: center;
}
.container {
max-width: 600px;
width: 100%;
height: 100%;
}
</style>
<script type="module" src="/src/my-element.ts"></script>
</head>
<body>
<section class="container">
<gallery-layout></gallery-layout>
</section>
</body>
</html>