From fcbda884647c1f8e70757937ea8474daf3225e83 Mon Sep 17 00:00:00 2001 From: caadiq Date: Sun, 5 Apr 2026 13:48:12 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=98=88=EB=8A=A5=20=EC=83=81=EC=84=B8?= =?UTF-8?q?=20=EC=8D=B8=EB=84=A4=EC=9D=BC=EC=9D=84=20=EC=84=B8=EB=A1=9C=20?= =?UTF-8?q?=ED=8F=AC=EC=8A=A4=ED=84=B0=20=EB=A0=88=EC=9D=B4=EC=95=84?= =?UTF-8?q?=EC=9B=83=EC=9C=BC=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 가로 전체 → 왼쪽 세로 포스터(w-52) + 오른쪽 콘텐츠 (flex 레이아웃) - 세로 이미지가 잘리지 않도록 object-cover + 고정 너비 Co-Authored-By: Claude Opus 4.6 (1M context) --- .../schedule/sections/VarietySection.jsx | 39 +++++++++---------- 1 file changed, 18 insertions(+), 21 deletions(-) diff --git a/frontend/src/pages/pc/public/schedule/sections/VarietySection.jsx b/frontend/src/pages/pc/public/schedule/sections/VarietySection.jsx index 88015ac..4997567 100644 --- a/frontend/src/pages/pc/public/schedule/sections/VarietySection.jsx +++ b/frontend/src/pages/pc/public/schedule/sections/VarietySection.jsx @@ -15,39 +15,35 @@ function VarietySection({ schedule }) { return (
- {/* 상단: 썸네일 + 오버레이 */} - {hasThumbnail && ( -
- {hasReplayUrl ? ( - -
+ + )} - {/* 콘텐츠 */} -
+ {/* 오른쪽: 콘텐츠 */} +
{/* 방송사 + 날짜 */}
{schedule.broadcaster && ( @@ -99,6 +95,7 @@ function VarietySection({ schedule }) {
)}
+
); }