From 759698b3f8b47bb21b014b51312b561b202ed75a Mon Sep 17 00:00:00 2001 From: kimjaehyeon0101 <47347352-kimjaehyeon0101@users.noreply.replit.com> Date: Tue, 30 Sep 2025 03:16:52 +0000 Subject: [PATCH] Improve the visual appearance and readability of article content Update CSS classes and styling in `client/src/pages/Article.tsx` to enhance the presentation of article titles, excerpts, and body content, improving overall readability. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 069d4324-6c40-4355-955e-c714a50de1ea Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3df548ff-50ae-432f-9be4-25d34eccc983/069d4324-6c40-4355-955e-c714a50de1ea/DGb2VKl --- client/src/pages/Article.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/client/src/pages/Article.tsx b/client/src/pages/Article.tsx index d0ac815..07b7d95 100644 --- a/client/src/pages/Article.tsx +++ b/client/src/pages/Article.tsx @@ -180,11 +180,11 @@ export default function Article() {
{/* Article Content */} -
-
-

{article.title}

+
+
+

{article.title}

{article.excerpt && ( -

+

{article.excerpt}

)} @@ -192,7 +192,7 @@ export default function Article() {
{parseArticleContent(article.content).map((part, index) => { @@ -200,14 +200,14 @@ export default function Article() { return (

{part.content}

); } return ( -

+

{part.content}

);