From 57746583b6970ab25dfc72b6e649843bbb9c5430 Mon Sep 17 00:00:00 2001 From: Cho Young-Hwi Date: Sun, 12 Apr 2026 03:45:26 +0100 Subject: [PATCH] [#836] Fix desktop stats boxes falling below Moleskine cover Replace grid-template-areas with explicit grid placement (row-span, col-span, col-start) so the cover spans both rows on desktop and stats sit beside it in column 2. Mobile layout unchanged. Co-Authored-By: Claude Opus 4.6 (1M context) --- package.json | 2 +- src/app/story/[storylineId]/page.tsx | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index de308ca4..b77f0774 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "plotlink", - "version": "0.1.18", + "version": "0.1.19", "private": true, "workspaces": [ "packages/*" diff --git a/src/app/story/[storylineId]/page.tsx b/src/app/story/[storylineId]/page.tsx index 77d72d5f..abe3bcd2 100644 --- a/src/app/story/[storylineId]/page.tsx +++ b/src/app/story/[storylineId]/page.tsx @@ -316,10 +316,10 @@ function StoryHeader({ return (
{/* Moleskine book cover */} -
+
{/* Info column */} -
+

{storyline.title}

@@ -380,8 +380,8 @@ function StoryHeader({
- {/* Stats + CTA — rendered once, repositioned via grid areas */} -
+ {/* Stats + CTA */} +
{statsGrid &&
{statsGrid}
}
{ctaButton}