From a1626a5c20d1b22adb68b0b439c660edf37f3c45 Mon Sep 17 00:00:00 2001 From: kenilkb Date: Fri, 17 Jul 2026 15:44:22 +0530 Subject: [PATCH] Responsive mobile layout fix for showcase lightbox --- Channel-Frontend/src/pages/ShowcasePage.tsx | 26 ++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/Channel-Frontend/src/pages/ShowcasePage.tsx b/Channel-Frontend/src/pages/ShowcasePage.tsx index 4080e2e..7498764 100644 --- a/Channel-Frontend/src/pages/ShowcasePage.tsx +++ b/Channel-Frontend/src/pages/ShowcasePage.tsx @@ -59,7 +59,7 @@ const YouTubeEmbed: React.FC<{ videoId: string }> = ({ videoId }) => { const InstagramEmbed: React.FC<{ postId: string; size: 'compact' | 'theater' | 'cinema' }> = ({ postId, size }) => { const maxWidthClass = size === 'compact' ? 'max-w-[360px]' : size === 'theater' ? 'max-w-[420px]' : 'max-w-[480px]'; return ( -
+