diff options
| author | Shpuld Shpuldson <shp@cock.li> | 2020-11-26 23:01:16 +0200 |
|---|---|---|
| committer | Shpuld Shpuldson <shp@cock.li> | 2020-11-26 23:01:16 +0200 |
| commit | 276ef31145c4f485c0b899f5243c49e2cbf80cc1 (patch) | |
| tree | c5174b0c31dbcdeb0a7a64575a07583ad3ee87f2 /src/components/reply_button | |
| parent | 5dfcf2acac7845a8bfcd5f74831566b30675bbd9 (diff) | |
fix alternative icons having wrong offsets
Diffstat (limited to 'src/components/reply_button')
| -rw-r--r-- | src/components/reply_button/reply_button.vue | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/components/reply_button/reply_button.vue b/src/components/reply_button/reply_button.vue index fb010278..c17041da 100644 --- a/src/components/reply_button/reply_button.vue +++ b/src/components/reply_button/reply_button.vue @@ -12,12 +12,13 @@ icon="reply" /> </button> - <FAIcon - v-else - icon="reply" - class="fa-scale-110 fa-old-padding" - :title="$t('tool_tip.reply')" - /> + <span v-else> + <FAIcon + icon="reply" + class="fa-scale-110 fa-old-padding" + :title="$t('tool_tip.reply')" + /> + </span> <span v-if="status.replies_count > 0" class="action-counter" @@ -37,7 +38,7 @@ > :first-child { padding: 10px; - margin: -10px -5px -10px -10px; + margin: -10px -8px -10px -10px; } .action-counter { |
