tentative table styling

main
Zynh0722 2023-11-15 14:04:59 -08:00
parent 0d537963ab
commit 6c1fa49350
1 changed files with 21 additions and 23 deletions

View File

@ -15,7 +15,8 @@
Dancers
</h1>
<table class="m-auto table-auto w-4/5">
<form hx-post="/api/dancers" hx-target="find #dancer_list" hx-swap="afterend" hx-on::after-request="if(event.detail.successful) this.reset()">
<table class="m-auto table-auto w-4/5">
<thead class="text-xs text-gray-700 bg-gray-50">
<tr>
<th scope="col" class="px-6 py-3">Name</th>
@ -25,9 +26,7 @@
</thead>
<tbody id="dancer_list">
<tr hx-target="this" class="bg-white even:bg-neutral-50 border-b">
<form hx-post="/api/dancers" hx-swap="afterend"
hx-on::after-request=" if(event.detail.successful) this.reset()">
<tr class="bg-white even:bg-neutral-50 border-b">
<td>
<div class="relative">
<input type="text" id="name" name="name"
@ -51,12 +50,10 @@
</div>
</td>
<td class="w-10 h-full">
<button type="submit"
class="focus:outline-none text-white bg-green-700 hover:bg-green-800 focus:ring-4 focus:ring-green-300 font-medium rounded-lg text-sm w-full h-full">+</button>
<td class="w-12">
<button type="submit" class="focus:outline-none text-white bg-green-700 hover:bg-green-800 focus:ring-4 focus:ring-green-300 font-medium rounded-lg text-sm w-12 h-12">+</button>
</td>
</form>
</tr>
@for dancer in dancers.into_iter() {
@ -64,6 +61,7 @@
}
</tbody>
</table>
</table>
</form>
})