We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 281c72f commit 011ad66Copy full SHA for 011ad66
web/components/chat/chat-message.tsx
@@ -119,7 +119,12 @@ export function ChatMessageItem(props: {
119
</div>
120
</Row>
121
{/* Hidden host for emoji picker, opened via long-press */}
122
- <div className="absolute left-1/2 transform -translate-x-1/2 -mt-2">
+ <div
123
+ className={clsx(
124
+ 'absolute -mt-2',
125
+ isMe ? 'right-40' : 'left-40',
126
+ )}
127
+ >
128
<MessageActions
129
message={{
130
id: chat.id,
0 commit comments