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/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) => {
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%;