Skip to content

Commit 6c38b6a

Browse files
committed
fix: ensure pagination icons render with correct dimensions
1 parent 4e08976 commit 6c38b6a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/components/PaginationControls.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ function handlePageSizeChange(event: Event) {
200200
:aria-label="$t('filters.pagination.previous')"
201201
@click="goPrev"
202202
>
203-
<span class="i-carbon-chevron-left w-4 h-4" aria-hidden="true" />
203+
<span class="i-carbon-chevron-left block w-4 h-4" aria-hidden="true" />
204204
</button>
205205

206206
<!-- Page numbers -->
@@ -230,7 +230,7 @@ function handlePageSizeChange(event: Event) {
230230
:aria-label="$t('filters.pagination.next')"
231231
@click="goNext"
232232
>
233-
<span class="i-carbon-chevron-right w-4 h-4" aria-hidden="true" />
233+
<span class="i-carbon-chevron-right block w-4 h-4" aria-hidden="true" />
234234
</button>
235235
</nav>
236236
</div>

0 commit comments

Comments
 (0)