Skip to content

Commit d79be01

Browse files
committed
fix(BlockOverview): pagination padding
1 parent b9f74e7 commit d79be01

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

components/modules/block/BlockOverview.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ const handleCopy = (target) => {
334334
</Flex>
335335
336336
<!-- Pagination -->
337-
<Flex v-if="filteredTransactions.length && pages > 1" align="center" gap="6">
337+
<Flex v-if="filteredTransactions.length && pages > 1" align="center" gap="6" :class="$style.pagination">
338338
<Button @click="page = 1" type="secondary" size="mini" :disabled="page === 1"> First </Button>
339339
<Button type="secondary" @click="handlePrev" size="mini" :disabled="page === 1">
340340
<Icon name="arrow-narrow-left" size="12" color="primary" />
@@ -535,6 +535,10 @@ const handleCopy = (target) => {
535535
padding: 16px 0;
536536
}
537537
538+
.pagination {
539+
padding: 0 16px 16px 16px;
540+
}
541+
538542
@media (max-width: 800px) {
539543
.content {
540544
flex-direction: column;

0 commit comments

Comments
 (0)