💄 Fix min width

This commit is contained in:
LittleSheep 2024-12-21 15:51:31 +08:00
parent f5cce64862
commit 2292513efc
2 changed files with 2 additions and 2 deletions

View File

@ -144,7 +144,7 @@ const url =
} }
<article> <article>
<div class="prose max-w-none max-md:prose-lg" set:html={content} /> <div class="prose max-w-none max-md:prose-lg min-w-0" set:html={content} />
{ {
attachments && ( attachments && (

View File

@ -106,7 +106,7 @@ async function parseContent(data: string, useBreaks: boolean = false) {
)} )}
<article> <article>
<div <div
class="prose max-w-none max-md:prose-lg" class="prose max-w-none max-md:prose-lg max-w-0"
set:html={ele.body?.content ?? ''} set:html={ele.body?.content ?? ''}
/> />