Skip to content

Commit

Permalink
feat: Fix activity contribution reaction display when large screen - M…
Browse files Browse the repository at this point in the history
…EED-3361 - Meeds-io/MIPs#113 (#1489)

This PR allows to reduce the spacing in the activity contribution action to prevent it from moving to a new line when the screen width is between 1264px and 1364px.

(cherry picked from commit b0dcbe2)
  • Loading branch information
SaraBoutej authored and exo-swf committed Feb 28, 2024
1 parent 70666af commit 079a7be
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

-->
<template>
<div v-if="canAnnounce" class="d-inline-flex ms-lg-4">
<div v-if="canAnnounce" class="d-inline-flex ms-xl-4 ms-lg-3">
<!-- Added for mobile -->
<v-tooltip :disabled="isMobile" bottom>
<template #activator="{ on, attrs }">
Expand All @@ -38,7 +38,7 @@
:size="isMobile && '20' || '14'">
fas fa-bullhorn
</v-icon>
<span v-if="!isMobile" class="mx-auto mt-1 mt-lg-0 ms-lg-2">
<span v-if="!isMobile" class="mx-auto mt-1 mt-lg-0 ms-lg-1">
{{ $t('rule.detail.Announce') }}
</span>
</div>
Expand Down Expand Up @@ -83,4 +83,4 @@ export default {
},
},
};
</script>
</script>

0 comments on commit 079a7be

Please sign in to comment.