Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,10 @@ code, pre, .font-mono {
/* Markdown rendering inside ruled paper — fiction-focused prose.
All vertical spacing must be multiples of var(--line-height) (28px)
to stay aligned with the ruled-paper grid lines. */
.story-markdown {
overflow-wrap: break-word;
word-break: break-word;
}
.story-markdown h1 {
font-size: 1.5rem;
line-height: calc(var(--line-height) * 2);
Expand Down
2 changes: 1 addition & 1 deletion src/app/story/[storylineId]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export default async function StoryPage({ params }: { params: Params }) {

<div className="mt-8 grid grid-cols-1 gap-10 lg:grid-cols-[1fr_320px]">
{/* Story content — genesis + table of contents */}
<main>
<main className="min-w-0">
{genesis ? (
<>
<GenesisSection
Expand Down
Loading