Merge branch 'emoji-selector-wrap' into 'develop'
Wrap the emoji selector on smaller screens Closes #1161 See merge request soapbox-pub/soapbox!1947
This commit is contained in:
commit
8a30454be2
1 changed files with 1 additions and 2 deletions
|
@ -47,8 +47,7 @@ const EmojiSelector: React.FC<IEmojiSelector> = ({ emojis, onReact, visible = fa
|
|||
|
||||
return (
|
||||
<HStack
|
||||
space={2}
|
||||
className={classNames('bg-white dark:bg-gray-900 p-3 rounded-full shadow-md z-[999] w-max')}
|
||||
className={classNames('gap-2 bg-white dark:bg-gray-900 p-3 rounded-full shadow-md z-[999] w-max max-w-[100vw] flex-wrap')}
|
||||
>
|
||||
{Array.from(emojis).map((emoji, i) => (
|
||||
<EmojiButton
|
||||
|
|
Loading…
Reference in a new issue