-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
36 lines (36 loc) · 899 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="dist/lit-resizable-wrapper.js" type="module"></script>
<title>Lit Resizable</title>
</head>
<body>
<div
style="
width: 100%;
height: 100vh;
background-color: #eee;
position: relative;
"
>
<lit-resizable-wrapper style="--item-width: 150px; --item-height: 100px;">
<div
style="
width: 100%;
height: 100%;
background-color: #ccc;
border: 1px solid black;
text-align: center;
font-size: 22px;
line-height: var(--item-height);
margin: auto;
"
>
Resize Me!
</div>
</lit-resizable-wrapper>
</div>
</body>
</html>