Skip to content

Commit

Permalink
style: add bold on hover
Browse files Browse the repository at this point in the history
  • Loading branch information
pirhoo committed Jul 15, 2024
1 parent 5d908e6 commit 4560677
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/components/TinyPagination.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
name="first"
v-bind="{ modelValue, numberOfPages, hasFirst, hasPrevious, hasNext, hasLast }"
>
<phosphor-icon :name="firstPageIcon" />
<phosphor-icon :name="firstPageIcon" hover-weight="bold" />
<span class="visually-hidden">{{ t('tiny-pagination.first') }}</span>
</slot>
</b-button>
Expand All @@ -28,7 +28,7 @@
name="previous"
v-bind="{ modelValue, numberOfPages, hasPrevious, hasNext }"
>
<phosphor-icon :name="previousPageIcon" />
<phosphor-icon :name="previousPageIcon" hover-weight="bold" />
<span class="visually-hidden">{{ t('tiny-pagination.previous') }}</span>
</slot>
</b-button>
Expand Down Expand Up @@ -90,7 +90,7 @@
name="next"
v-bind="{ modelValue, numberOfPages, hasPrevious, hasNext }"
>
<phosphor-icon :name="nextPageIcon" />
<phosphor-icon :name="nextPageIcon" hover-weight="bold" />
<span class="visually-hidden">{{ t('tiny-pagination.next') }}</span>
</slot>
</b-button>
Expand All @@ -106,7 +106,7 @@
name="last"
v-bind="{ modelValue, numberOfPages, hasFirst, hasPrevious, hasNext, hasLast }"
>
<phosphor-icon :name="lastPageIcon" />
<phosphor-icon :name="lastPageIcon" hover-weight="bold" />
<span class="visually-hidden">{{ t('tiny-pagination.last') }}</span>
</slot>
</b-button>
Expand Down

0 comments on commit 4560677

Please sign in to comment.