mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
Make things fullwidth
This commit is contained in:
parent
bccb0ec008
commit
6cc5aa0465
3 changed files with 3 additions and 3 deletions
|
@ -151,7 +151,7 @@ export default function PostPage() {
|
|||
<Spacer y={4} />
|
||||
|
||||
<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 }}
|
||||
/>
|
||||
|
||||
|
|
|
@ -45,7 +45,7 @@ export default function CommentCard({ comment }: { comment: CommentType }) {
|
|||
<Spacer y={4} />
|
||||
|
||||
<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 }}
|
||||
/>
|
||||
|
||||
|
|
|
@ -153,7 +153,7 @@ export default function PostCard({
|
|||
<Spacer y={4} />
|
||||
|
||||
<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 }}
|
||||
/>
|
||||
|
||||
|
|
Loading…
Reference in a new issue