Make things fullwidth

This commit is contained in:
Ategon 2025-02-11 03:09:08 -05:00
parent bccb0ec008
commit 6cc5aa0465
3 changed files with 3 additions and 3 deletions
src
app/p/[slug]
components/posts

View file

@ -151,7 +151,7 @@ export default function PostPage() {
<Spacer y={4} /> <Spacer y={4} />
<div <div
className="prose dark:prose-invert !duration-250 !ease-linear !transition-all" className="prose dark:prose-invert !duration-250 !ease-linear !transition-all max-w-full break-words"
dangerouslySetInnerHTML={{ __html: post.content }} dangerouslySetInnerHTML={{ __html: post.content }}
/> />

View file

@ -45,7 +45,7 @@ export default function CommentCard({ comment }: { comment: CommentType }) {
<Spacer y={4} /> <Spacer y={4} />
<div <div
className="prose dark:prose-invert !duration-250 !ease-linear !transition-all" className="prose dark:prose-invert !duration-250 !ease-linear !transition-all max-w-full break-words"
dangerouslySetInnerHTML={{ __html: comment.content }} dangerouslySetInnerHTML={{ __html: comment.content }}
/> />

View file

@ -153,7 +153,7 @@ export default function PostCard({
<Spacer y={4} /> <Spacer y={4} />
<div <div
className="prose dark:prose-invert !duration-250 !ease-linear !transition-all" className="prose dark:prose-invert !duration-250 !ease-linear !transition-all max-w-full break-words"
dangerouslySetInnerHTML={{ __html: post.content }} dangerouslySetInnerHTML={{ __html: post.content }}
/> />