From 7245775b279ff022f22eaecaa627c9e940473420 Mon Sep 17 00:00:00 2001 From: Riedler Date: Wed, 26 Mar 2025 06:51:51 +0100 Subject: [PATCH] fix: picked reactions should be positioned identically --- src/components/emoji_reactions/emoji_reactions.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/emoji_reactions/emoji_reactions.vue b/src/components/emoji_reactions/emoji_reactions.vue index be70d522..16ef58a1 100644 --- a/src/components/emoji_reactions/emoji_reactions.vue +++ b/src/components/emoji_reactions/emoji_reactions.vue @@ -97,9 +97,9 @@ } .button-default.picked-reaction { - border: 1px solid var(--accent, $fallback--link); - margin-left: -1px; // offset the border, can't use inset shadows either - margin-right: calc(0.5em - 1px); + &, &:hover { + box-shadow: inset 0 0 0 1px var(--accent, $fallback--link); + } }