Skip to content

Commit

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

This PR allows to reduce the spacing in the activity kudos action to prevent it from moving to a new line when the screen width is between 1264px and 1364px.
  • Loading branch information
SaraBoutej authored Feb 21, 2024
2 parents 27a39d4 + 807dd20 commit 34b804d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div
:class="!isComment && 'ms-lg-4'"
:class="!isComment && 'ms-xl-4 ms-lg-3'"
class="d-inline-flex">
<v-tooltip :disabled="isMobile" bottom>
<template #activator="{ on, attrs }">
Expand Down Expand Up @@ -28,7 +28,7 @@
:size="isMobile && '20' || '14'">
fa-award
</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('exoplatform.kudos.label.kudos') }}
</span>
</div>
Expand Down Expand Up @@ -198,4 +198,4 @@ export default {
},
},
};
</script>
</script>

0 comments on commit 34b804d

Please sign in to comment.