Skip to content

Commit

Permalink
fix(MessageInput): add container className
Browse files Browse the repository at this point in the history
- fixes layering issue (z-index)
  • Loading branch information
arnautov-anton committed Aug 1, 2022
1 parent 592b632 commit a5e7908
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/MessageInput/MessageInputFlat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,12 @@ const MessageInputV2 = <

<div className='str-chat__message-textarea-emoji-picker'>
{emojiPickerIsOpen && (
<div style={styles.popper} {...attributes.popper} ref={setPopperElement}>
<div
className='str-chat__message-textarea-emoji-picker-container'
style={styles.popper}
{...attributes.popper}
ref={setPopperElement}
>
<EmojiPicker />
</div>
)}
Expand Down

0 comments on commit a5e7908

Please sign in to comment.