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