fix: match pagination button size to admin filter buttons (default size)
All checks were successful
Build and Push Frontend Image / build (push) Successful in 1m11s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-10 12:07:44 +01:00
parent 9abcd715d7
commit b842106e44

View File

@@ -34,7 +34,6 @@
<div class="flex items-center gap-1">
<Button
variant="outline"
size="sm"
disabled={currentPage <= 1}
onclick={() => onPageChange(currentPage - 1)}
>
@@ -46,7 +45,6 @@
{:else}
<Button
variant={p === currentPage ? "default" : "outline"}
size="sm"
class="min-w-9"
onclick={() => onPageChange(p)}
>
@@ -56,7 +54,6 @@
{/each}
<Button
variant="outline"
size="sm"
disabled={currentPage >= totalPages}
onclick={() => onPageChange(currentPage + 1)}
>