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