-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit.html
61 lines (61 loc) · 1.89 KB
/
edit.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
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="dist/styles/output.css" />
<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=Manrope:wght@400;600;700&display=swap"
rel="stylesheet"
/>
<title>Detail</title>
</head>
<body class="mx-auto text-sm bg-white">
<header class="w-full max-w-screen-xs mx-auto px-4 pt-4">
<div class="flex justify-between">
<button onclick="history.back()" class="p-1 text-gray-950">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="size-6"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M10.5 19.5 3 12m0 0 7.5-7.5M3 12h18"
/>
</svg>
</button>
<button
id="buttonRedirect"
class="p-2 bg-gray-100 text-gray-950 rounded-full"
>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="size-6"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M6 18 18 6M6 6l12 12"
/>
</svg>
</button>
</div>
</header>
<main class="w-full max-w-screen-xs mx-auto px-4 pt-6"></main>
<footer
class="w-full max-w-screen-xs mx-auto flex flex-col items-center"
></footer>
<script type="module" src="src/edit.js"></script>
</body>
</html>