Yuhao
2 anni fa
Nessun account collegato all'indirizzo email del committer
|
|
|
@@ -80,6 +80,7 @@ const EmojiPicker: FC<IEmojiPickerProps> = ({ |
|
|
|
onClose={() => { }} |
|
|
|
isShow |
|
|
|
closable={false} |
|
|
|
wrapperClassName='!z-40' |
|
|
|
className={cn(s.container, '!w-[362px] !p-0')} |
|
|
|
> |
|
|
|
<div className='flex flex-col items-center w-full p-3'> |
|
|
|
@@ -26,7 +26,7 @@ export default function Modal({ |
|
|
|
}: IModal) { |
|
|
|
return ( |
|
|
|
<Transition appear show={isShow} as={Fragment}> |
|
|
|
<Dialog as="div" className="relative z-10" onClose={onClose}> |
|
|
|
<Dialog as="div" className={`relative z-10 ${wrapperClassName}`} onClose={onClose}> |
|
|
|
<Transition.Child |
|
|
|
as={Fragment} |
|
|
|
enter="ease-out duration-300" |