From 07083ca152d643bfdde46182a7d9903789755077 Mon Sep 17 00:00:00 2001 From: kimjaehyeon0101 <47347352-kimjaehyeon0101@users.noreply.replit.com> Date: Tue, 30 Sep 2025 03:48:59 +0000 Subject: [PATCH] Adjust spacing for article titles, subtitles, and body content Update `client/src/pages/Article.tsx` to decrease margin between excerpt and title, and increase line-height for article body. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 0fb68265-c270-4198-9584-3d9be9bddb41 Replit-Commit-Checkpoint-Type: full_checkpoint --- client/src/pages/Article.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/pages/Article.tsx b/client/src/pages/Article.tsx index 44a6795..39062e8 100644 --- a/client/src/pages/Article.tsx +++ b/client/src/pages/Article.tsx @@ -185,7 +185,7 @@ export default function Article() {

{article.title}

{article.excerpt && ( -

+

{article.excerpt}

)} @@ -207,7 +207,7 @@ export default function Article() { ); } return ( -

+

{part.content.trim()}

);