Update API URL in .env; add responsive design adjustments in tailwind.config.js; enhance ModalWrapper and Popup components for improved mobile interactions; refactor audio handling in VoiceCheckModal and SoundCheckModal; implement drag functionality in PopupContainer; improve ChatPopup and SharePopup UI for better user experience.
This commit is contained in:
@@ -15,7 +15,12 @@ function ModalWrapper({
|
||||
className,
|
||||
}: ModalWrapperProps) {
|
||||
return (
|
||||
<div className={clsx("bg-white rounded-[1.111vw] relative", className)}>
|
||||
<div
|
||||
className={clsx(
|
||||
"bg-white 2xl:rounded-[2.222vw] rounded-[32px] relative",
|
||||
className
|
||||
)}
|
||||
>
|
||||
<ModalHeader title={title} leftButton={leftButton} />
|
||||
<div className={clsx("2xl:p-[1.389vw] p-5", !title && "!pt-0")}>
|
||||
{children}
|
||||
|
||||
Reference in New Issue
Block a user