chore: lowercase text

This commit is contained in:
metamethods 2025-01-03 01:21:07 -08:00
parent 403d82adba
commit 0a947d8bdd

View File

@ -17,18 +17,18 @@
<div class="flex flex-col gap-2"> <div class="flex flex-col gap-2">
<p> <p>
Showing <span class="font-bold text-light">{pageIndexStart + 1}</span> to showing <span class="font-bold text-light">{pageIndexStart + 1}</span> to
<span class="font-bold text-light">{pageIndexEnd}</span> <span class="font-bold text-light">{pageIndexEnd}</span>
of <span class="font-bold text-light">{items.length}</span> of <span class="font-bold text-light">{items.length}</span>
Entries entires
</p> </p>
<div class="flex divide-x divide-border"> <div class="flex divide-x divide-border">
<button class="rounded-bl-lg rounded-tl-lg text-light" onclick={() => currentPage--} <button class="rounded-bl-lg rounded-tl-lg text-light" onclick={() => currentPage--}
>Previous</button >prev</button
> >
<button class="rounded-br-lg rounded-tr-lg text-light" onclick={() => currentPage++} <button class="rounded-br-lg rounded-tr-lg text-light" onclick={() => currentPage++}
>Next</button >next</button
> >
</div> </div>
</div> </div>