|
@@ -45,23 +45,60 @@ const ActivityModal = () => {
|
|
|
if (!isOpen || !activityContent || isLoading) return null;
|
|
|
|
|
|
return (
|
|
|
+ // <div className="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50">
|
|
|
+ // <div className="bg-white rounded-lg p-6 max-w-sm w-full mx-4">
|
|
|
+ // <div className="flex flex-col items-center mb-4 relative w-full">
|
|
|
+ // <div
|
|
|
+ // className="text-xl font-bold text-black w-full"
|
|
|
+ // dangerouslySetInnerHTML={{ __html: activityContent.title }}
|
|
|
+ // ></div>
|
|
|
+ // <button
|
|
|
+ // onClick={() => setIsOpen(false)}
|
|
|
+ // className="text-gray-500 hover:text-gray-700 absolute right-0 top-0"
|
|
|
+ // >
|
|
|
+ // <X size={24} />
|
|
|
+ // </button>
|
|
|
+ // </div>
|
|
|
+ // <div
|
|
|
+ // className="text-gray-700"
|
|
|
+ // dangerouslySetInnerHTML={{ __html: activityContent.content }}
|
|
|
+ // />
|
|
|
+ // </div>
|
|
|
+ // </div>
|
|
|
+
|
|
|
<div className="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50">
|
|
|
- <div className="bg-white rounded-lg p-6 max-w-sm w-full mx-4">
|
|
|
- <div className="flex justify-between items-center mb-4">
|
|
|
- <h2 className="text-xl font-bold text-blue-600">
|
|
|
- {activityContent.title}
|
|
|
- </h2>
|
|
|
- <button
|
|
|
- onClick={() => setIsOpen(false)}
|
|
|
- className="text-gray-500 hover:text-gray-700"
|
|
|
- >
|
|
|
- <X size={24} />
|
|
|
- </button>
|
|
|
- </div>
|
|
|
+ <div className="relative">
|
|
|
+ <button
|
|
|
+ onClick={() => setIsOpen(false)}
|
|
|
+ className="absolute -top-16 right-3 text-white hover:text-gray-300 z-20 p-2 rounded-full bg-gray-500 hover:bg-opacity-70 transition-all duration-300"
|
|
|
+ >
|
|
|
+ <X size={24} />
|
|
|
+ </button>
|
|
|
+
|
|
|
<div
|
|
|
- className="text-gray-700"
|
|
|
- dangerouslySetInnerHTML={{ __html: activityContent.content }}
|
|
|
- />
|
|
|
+ className="bg-cover bg-center rounded-lg px-6 pt-20 max-w-sm w-full mx-4 overflow-hidden"
|
|
|
+ style={{
|
|
|
+ backgroundImage: "url('/images/ad_bg.jpg')",
|
|
|
+ maxHeight: "80vh",
|
|
|
+ height: "50vh",
|
|
|
+ width: "80vw",
|
|
|
+ backgroundPosition: "top center",
|
|
|
+ }}
|
|
|
+ >
|
|
|
+ <div className="relative z-10 text-white">
|
|
|
+ <div className="flex flex-col items-center mb-4 relative w-full">
|
|
|
+ <div
|
|
|
+ className="text-2xl font-bold w-full text-center"
|
|
|
+ dangerouslySetInnerHTML={{ __html: activityContent.title }}
|
|
|
+ ></div>
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ className="overflow-y-auto"
|
|
|
+ style={{ maxHeight: "calc(50vh - 100px)" }}
|
|
|
+ dangerouslySetInnerHTML={{ __html: activityContent.content }}
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
);
|