Skip to content

Commit 3dd26d1

Browse files
cal0pteryxmremond
authored andcommitted
fix: MessageToolbar: Fix vertical alignment of 'more' menu button
1 parent 288ae99 commit 3dd26d1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

apps/fluux/src/components/__snapshots__/ChatView.test.tsx.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ exports[`ChatView > Snapshots > should match snapshot with messages 1`] = `
178178
</button>
179179
</div>
180180
<div
181-
class="relative"
181+
class="inline-flex relative"
182182
>
183183
<div
184184
class="inline-flex"
@@ -332,7 +332,7 @@ exports[`ChatView > Snapshots > should match snapshot with messages 1`] = `
332332
</button>
333333
</div>
334334
<div
335-
class="relative"
335+
class="inline-flex relative"
336336
>
337337
<div
338338
class="inline-flex"

apps/fluux/src/components/conversation/MessageToolbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ export const MessageToolbar = memo(function MessageToolbar({
236236
</Tooltip>
237237

238238
{/* More options button with dropdown */}
239-
<div className="relative" ref={moreMenuRef}>
239+
<div className="inline-flex relative" ref={moreMenuRef}>
240240
<Tooltip content={t('chat.moreOptions')} position="top" disabled={showReactionPicker || showMoreMenu}>
241241
<button
242242
ref={moreButtonRef}

0 commit comments

Comments
 (0)