Skip to content

Commit

Permalink
fix: reblog option spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
Clovis committed Dec 30, 2024
1 parent 35dca67 commit 198e1b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions elk/components/status/StatusActionReblog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ function reblog() {
</StatusActionButton>
<template #popper>
<div flex flex-col gap-1 items-start>
<button p-2 py-3 flex gap-2 items-center @click="reblog">
<button p-3 flex gap-2 items-center @click="reblog">
<div :class="status.reblogged ? 'i-tabler:repeat-off' : 'i-ri:repeat-line'" />
{{ $t(status.reblogged ? 'action.boosted' : 'action.boost') }}
</button>
<button p-2 py-3 flex gap-2 items-center @click="quote">
<button p-3 flex gap-2 items-center @click="quote">
<div i-ri:chat-quote-line />
{{ $t('action.quote') }}
</button>
Expand Down

0 comments on commit 198e1b3

Please sign in to comment.