Skip to content

Commit

Permalink
Merge pull request #3910 from umaysahan/emoji_panel_bug
Browse files Browse the repository at this point in the history
emoji panel bug has solved
  • Loading branch information
benwolski authored Jul 22, 2024
2 parents 8610147 + 2564a03 commit a00fb98
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -355,4 +355,7 @@
height: 1.2rem;
}

}
section[class^="emoji-scroll-wrapper"]{
scroll-behavior: auto;
}
6 changes: 4 additions & 2 deletions src/components/Chat/MessagePanel/InputBox/MessageInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,10 @@ export default function MessageInput(props: MessageInputProps) {
</div>
</div>
{showEmojiPicker && (
<div className={styles.emojiPicker}>
<div
className={styles.emojiPicker}
style={{ width: '100%' }}
>
<span className={styles.emoji_close_button}>
<RiCloseFill
size={20}
Expand Down Expand Up @@ -691,7 +694,6 @@ export default function MessageInput(props: MessageInputProps) {
<Picker
pickerStyle={{
width: '100%',
height: '89%',
}}
onEmojiClick={handleEmojiClick}
disableSkinTonePicker={true}
Expand Down

0 comments on commit a00fb98

Please sign in to comment.