This commit is contained in:
Timothy Jaeryang Baek 2024-11-18 09:00:51 -08:00
parent a77d1aef91
commit 02cafca584

View File

@ -55,7 +55,12 @@
onDelete={deleteHandler} onDelete={deleteHandler}
/> />
<div class="flex items-center gap-3 justify-between px-1 text-xs w-full transition"> <button
class="flex items-center gap-3 justify-between px-1 text-xs w-full transition"
on:click={() => {
showEdit = true;
}}
>
<div class="flex items-center gap-1.5 w-full font-medium"> <div class="flex items-center gap-1.5 w-full font-medium">
<div> <div>
<UserCircleSolid className="size-4" /> <UserCircleSolid className="size-4" />
@ -72,13 +77,8 @@
</div> </div>
<div class="w-full flex justify-end"> <div class="w-full flex justify-end">
<button <div class=" rounded-lg p-1 hover:bg-gray-100 dark:hover:bg-gray-850 transition">
class=" rounded-lg p-1 hover:bg-gray-100 dark:hover:bg-gray-850 transition"
on:click={() => {
showEdit = true;
}}
>
<Pencil className="size-3.5" /> <Pencil className="size-3.5" />
</button> </div>
</div> </div>
</div> </button>