mirror of
https://github.com/mue/mue.git
synced 2026-07-23 00:37:27 +02:00
fix(changelog): Sizing issue
This commit is contained in:
@@ -104,16 +104,17 @@ function Changelog() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<article
|
<div className="bg-modal-content-light dark:bg-modal-content-dark w-full ">
|
||||||
className="bg-modal-content-light dark:bg-modal-content-dark w-full rounded p-10 prose dark:prose-invert"
|
<article className="rounded p-10 prose dark:prose-invert" ref={changelog}>
|
||||||
ref={changelog}
|
<div>
|
||||||
>
|
<h1 class="leading-tight mb-1">{title}</h1>
|
||||||
<div>
|
<p class="leading-none mt-0">Published on {date}</p>
|
||||||
<h1 class="leading-tight mb-1">{title}</h1>
|
</div>
|
||||||
<p class="leading-none mt-0">Published on {date}</p>
|
<Markdown options={{ overrides: { a: { props: { target: '_blank' } } } }}>
|
||||||
</div>
|
{content}
|
||||||
<Markdown options={{ overrides: { a: { props: { target: '_blank' } } } }}>{content}</Markdown>
|
</Markdown>
|
||||||
</article>
|
</article>
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user