Unverified Commit b9ebce7a authored by crazywoola's avatar crazywoola Committed by GitHub

fix: emoji picker in safari (#199)

parent 33b3eaf3
...@@ -156,7 +156,7 @@ const EmojiPicker: FC<IEmojiPickerProps> = ({ ...@@ -156,7 +156,7 @@ const EmojiPicker: FC<IEmojiPickerProps> = ({
</div> </div>
{/* Color Select */} {/* Color Select */}
<div className={cn('flex flex-col p-3 ', selectedEmoji == '' ? 'opacity-25' : '')}> <div className={cn('p-3 ', selectedEmoji == '' ? 'opacity-25' : '')}>
<p className='font-medium uppercase text-xs text-[#101828] mb-2'>Choose Style</p> <p className='font-medium uppercase text-xs text-[#101828] mb-2'>Choose Style</p>
<div className='w-full h-full grid grid-cols-8 gap-1'> <div className='w-full h-full grid grid-cols-8 gap-1'>
{backgroundColors.map((color) => { {backgroundColors.map((color) => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment