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:
2025-10-20 17:06:54 +05:00
parent 4f0e5b9898
commit 50e62eac13
15 changed files with 314 additions and 178 deletions
+6 -1
View File
@@ -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}