forked from thirdweb-dev/widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dev-iframe.html
53 lines (53 loc) · 1.37 KB
/
dev-iframe.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body style="font-family: sans-serif; background: #333;">
<div
style="
display: flex;
flex-direction: column;
gap: 20px;
width: 100%;
height: 100%;
align-items: center;
"
>
<div style="gap: 5px; width: 600px; max-width: 100%;">
<h2>Preview 600x600</h2>
<iframe
src="http://localhost:1234/?contract=0xF1205F654d52492909175E4564D80d4d83176d88&chainId=137"
width="600px"
height="600px"
style="max-width: 100%;"
frameborder="0"
></iframe>
</div>
<div style="gap: 5px; width: 600px; max-width: 100%;">
<h2>Properties</h2>
<div>
<div>
<label style="gap: 5px;">
<span>Contract:</span>
<input
type="text"
value="0xF1205F654d52492909175E4564D80d4d83176d88"
style="width: 100%"
/>
</label>
</div>
<div>
<label>
<span>Chain ID:</span>
<input
type="text"
value="137"
style="width: 100%"
/>
</label>
</div>
</div>
</div>
</body>
</html>