-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
30 lines (30 loc) · 1.12 KB
/
test.html
File metadata and controls
30 lines (30 loc) · 1.12 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>test</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="h-screen flex items-center justify-center ">
<div class="w-80 bg-gray-200 flex flex-col rounded p-2">
<div class="bg-red-300 border-b-4 border-red-400 rounded-t p-2 ">
<div>component name</div>
<div class="flex flex-row justify-between">
<div>version:1.0.0</div>
<div>in progress</div>
</div>
</div>
<div class="mt-4">
<div class="font-normal"><span class="font-medium">assignees:</span>assign members</div>
<div class="mt-6">Description</div>
<div class="mt-4">Component description and updates</div>
</div>
<div class="bg-gray-100 flex justify-between px-4 py-2 mt-4">
<div class="">last updated</div>
<div class="">date</div>
</div>
</div>
</body>
</html>