style: adjust Post component container to remove width limitation

This commit is contained in:
tuna2134
2025-06-23 13:08:45 +09:00
parent 9a2d89acba
commit 2be5936b18

View File

@@ -19,7 +19,7 @@ export default async function Page({ params }: Props) {
</h2>
</div>
<p className="text-gray-600/80">{metadata.datetime}</p>
<div className="prose mt-2 w-full">
<div className="prose mt-2 max-w-none">
<Post />
</div>
</>