From b67ec699bba54f6bd3765b4f236b7bddbc0d8adf Mon Sep 17 00:00:00 2001 From: JeongwooSeo Date: Sun, 22 Dec 2024 20:39:08 +0900 Subject: [PATCH 1/2] =?UTF-8?q?style:=20=ED=99=94=EB=A9=B4=EC=9D=B4=20?= =?UTF-8?q?=EC=A2=81=EC=9D=84=EB=95=8C=EB=8A=94=20=EC=95=88=EB=B3=B4?= =?UTF-8?q?=EC=9D=B4=EA=B2=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/entities/post/detail/PostTOC.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/entities/post/detail/PostTOC.tsx b/app/entities/post/detail/PostTOC.tsx index 8039f90..a36d814 100644 --- a/app/entities/post/detail/PostTOC.tsx +++ b/app/entities/post/detail/PostTOC.tsx @@ -12,7 +12,7 @@ const PostTOC = ({ postContent }: { postContent: string }) => { }; return ( -
+

📌 Table of Contents

    {parseHeadings(postContent).map((heading) => { From 2257a1cb56adca243f0da9e765072fc0f2a6068c Mon Sep 17 00:00:00 2001 From: JeongwooSeo Date: Mon, 23 Dec 2024 00:43:37 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=EA=B8=80=EC=9D=B4=20=ED=99=94?= =?UTF-8?q?=EB=A9=B4=EC=9D=84=20=EB=84=98=EC=96=B4=EA=B0=80=EB=8A=94=20?= =?UTF-8?q?=EB=AC=B8=EC=A0=9C=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/entities/post/detail/PostBody.tsx | 2 +- app/globals.css | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/entities/post/detail/PostBody.tsx b/app/entities/post/detail/PostBody.tsx index dda1532..ade8d53 100644 --- a/app/entities/post/detail/PostBody.tsx +++ b/app/entities/post/detail/PostBody.tsx @@ -11,7 +11,7 @@ interface Props { const PostBody = ({ content, loading }: Props) => { return (
    {loading ? (
    diff --git a/app/globals.css b/app/globals.css index 27062a8..c3be5c5 100644 --- a/app/globals.css +++ b/app/globals.css @@ -65,6 +65,7 @@ article.post h6 { article.post .post-body { max-width: 768px; + width: 100%; margin: 0 auto; font-size: 1.1em; line-height: 150%;