From 8483af120db0ee22167b709ee33abcb25bfe4a73 Mon Sep 17 00:00:00 2001 From: Cho Young-Hwi Date: Fri, 3 Apr 2026 18:11:49 +0100 Subject: [PATCH] [#818] Move stats + CTA inside flex-1 column next to cover Move stats grid and AddPlotButton back inside the min-w-0 flex-1 info column div. Flexbox naturally places them next to the cover on both mobile and desktop. Remove sm:pl-[176px] hack. Fixes #818 Co-Authored-By: Claude Opus 4.6 (1M context) --- src/app/story/[storylineId]/page.tsx | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/src/app/story/[storylineId]/page.tsx b/src/app/story/[storylineId]/page.tsx index ddf81aec..a21ce284 100644 --- a/src/app/story/[storylineId]/page.tsx +++ b/src/app/story/[storylineId]/page.tsx @@ -325,13 +325,10 @@ function StoryHeader({ - - - {/* Stats grid — below cover+info on mobile, aligned with right column on desktop */} - {priceInfo && ( -
-
+ {/* Stats grid — inside right column, next to cover */} + {priceInfo && ( +
{createdDate ?? "—"}
Created
-
-
- )} + + )} - {/* CTA — below stats, aligned with right column on desktop */} -
- + {/* CTA — in right column */} + +
);