Skip to content

Commit 41d2813

Browse files
committed
(fix) options-container position
1 parent 3819f6b commit 41d2813

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/ChatWindow/Message.vue

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
<emoji-picker
150150
key="3"
151151
class="message-reactions"
152-
:style="{ right: isMessageActions ? '28px' : '5px' }"
152+
:style="{ right: isMessageActions ? '30px' : '5px' }"
153153
v-if="isMessageReactions"
154154
v-click-outside="closeEmoji"
155155
:emojiOpened="emojiOpened"
@@ -354,9 +354,9 @@ export default {
354354
},
355355
optionsBlurWidth() {
356356
if (this.filteredMessageActions.length && this.showReactionEmojis) {
357-
return this.isImage ? '67px' : '70px'
357+
return this.isImage ? '69px' : '72px'
358358
} else {
359-
return this.isImage ? '42px' : '45px'
359+
return this.isImage ? '44px' : '47px'
360360
}
361361
}
362362
},
@@ -674,7 +674,7 @@ export default {
674674
675675
.options-container {
676676
position: absolute;
677-
top: 3px;
677+
top: 2px;
678678
right: 10px;
679679
height: 40px;
680680
width: 70px;
@@ -686,7 +686,7 @@ export default {
686686
position: absolute;
687687
height: 100%;
688688
width: 100%;
689-
left: 10px;
689+
left: 8px;
690690
bottom: 10px;
691691
background: var(--chat-message-bg-color);
692692
filter: blur(4px);
@@ -753,7 +753,7 @@ export default {
753753
border-radius: 50%;
754754
position: absolute;
755755
top: 7px;
756-
right: 5px;
756+
right: 7px;
757757
758758
svg {
759759
height: 17px;
@@ -766,7 +766,7 @@ export default {
766766
.message-reactions {
767767
position: absolute;
768768
top: 6px;
769-
right: 28px;
769+
right: 30px;
770770
}
771771
772772
.menu-options {
@@ -843,7 +843,7 @@ export default {
843843
}
844844
845845
.options-container {
846-
right: 5px;
846+
right: 3px;
847847
}
848848
849849
.menu-left {

0 commit comments

Comments
 (0)