From 5a5549fc5458362177c6d0fb6f18042013e8d54c Mon Sep 17 00:00:00 2001 From: Dotta Date: Tue, 3 Mar 2026 08:39:56 -0600 Subject: [PATCH] feat(ui): improve markdown typography with better paragraph spacing and line height Increase paragraph margins, add line-height: 1.4 to paragraphs/lists/blockquotes, and bump inter-paragraph spacing in the MDXEditor for more readable markdown blocks. Co-Authored-By: Claude Opus 4.6 --- ui/src/components/MarkdownBody.tsx | 4 ++-- ui/src/index.css | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ui/src/components/MarkdownBody.tsx b/ui/src/components/MarkdownBody.tsx index 2a2ce11..7ebd77c 100644 --- a/ui/src/components/MarkdownBody.tsx +++ b/ui/src/components/MarkdownBody.tsx @@ -1,7 +1,7 @@ import type { CSSProperties } from "react"; import Markdown from "react-markdown"; import remarkGfm from "remark-gfm"; -import { parseProjectMentionHref } from "@paperclip/shared"; +import { parseProjectMentionHref } from "@paperclipai/shared"; import { cn } from "../lib/utils"; import { useTheme } from "../context/ThemeContext"; @@ -38,7 +38,7 @@ export function MarkdownBody({ children, className }: MarkdownBodyProps) { return (