From 77f3f3048bf7684cf6bd8d5ade161935a0a13dd1 Mon Sep 17 00:00:00 2001 From: kimjaehyeon0101 <47347352-kimjaehyeon0101@users.noreply.replit.com> Date: Tue, 30 Sep 2025 03:50:53 +0000 Subject: [PATCH] Reduce spacing between article subtitle and main content Adjusted the `mb-2` to `mb-0` on the `p` tag for the article excerpt in `client/src/pages/Article.tsx` to decrease the bottom margin. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 0fb68265-c270-4198-9584-3d9be9bddb41 Replit-Commit-Checkpoint-Type: full_checkpoint --- .replit | 4 ---- client/src/pages/Article.tsx | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.replit b/.replit index 14c4d3b..e53b196 100644 --- a/.replit +++ b/.replit @@ -30,10 +30,6 @@ externalPort = 3003 localPort = 43349 externalPort = 3000 -[[ports]] -localPort = 44299 -externalPort = 4200 - [env] PORT = "5000" diff --git a/client/src/pages/Article.tsx b/client/src/pages/Article.tsx index 39062e8..a1d4792 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}

)}