chore; update the git ignore file
This commit is contained in:
6
.gitignore
vendored
6
.gitignore
vendored
@@ -4,3 +4,9 @@ app/tmp/*
|
|||||||
|
|
||||||
*.env
|
*.env
|
||||||
*.DS_Store
|
*.DS_Store
|
||||||
|
misc-code/menu.html
|
||||||
|
misccode/index.html
|
||||||
|
misccode/menu.html
|
||||||
|
misccode/tmp/build-errors.log
|
||||||
|
misc-code/menu.html
|
||||||
|
misc-code/menu.html
|
||||||
|
|||||||
@@ -1,39 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
||||||
<script src="https://cdn.tailwindcss.com"></script>
|
|
||||||
<title>Chakra-like Table</title>
|
|
||||||
</head>
|
|
||||||
<body class="bg-gray-50 p-10">
|
|
||||||
<div class="overflow-x-auto">
|
|
||||||
<table class="min-w-full bg-white border border-gray-200 rounded-lg">
|
|
||||||
<thead class="bg-teal-500 text-white">
|
|
||||||
<tr>
|
|
||||||
<th class="px-6 py-3 text-left">Name</th>
|
|
||||||
<th class="px-6 py-3 text-left">Age</th>
|
|
||||||
<th class="px-6 py-3 text-left">City</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<tr class="border-b">
|
|
||||||
<td class="px-6 py-4">Mann</td>
|
|
||||||
<td class="px-6 py-4">21</td>
|
|
||||||
<td class="px-6 py-4">Calgary</td>
|
|
||||||
</tr>
|
|
||||||
<tr class="border-b bg-gray-50">
|
|
||||||
<td class="px-6 py-4">Alice</td>
|
|
||||||
<td class="px-6 py-4">25</td>
|
|
||||||
<td class="px-6 py-4">Toronto</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td class="px-6 py-4">Bob</td>
|
|
||||||
<td class="px-6 py-4">30</td>
|
|
||||||
<td class="px-6 py-4">Vancouver</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
Reference in New Issue
Block a user