fix: adjust the spacings for change log page
This commit is contained in:
parent
dacff08ede
commit
ae1e0e0023
1 changed files with 3 additions and 3 deletions
|
@ -54,9 +54,9 @@ const LogsPage: React.FC = async () => {
|
||||||
key={download._id}
|
key={download._id}
|
||||||
className="flex-start prose max-w-full md:prose-lg dark:prose-invert flex-col mb-4"
|
className="flex-start prose max-w-full md:prose-lg dark:prose-invert flex-col mb-4"
|
||||||
>
|
>
|
||||||
<h2 className="font-bold text-3xl">{download.version}</h2>
|
<h2>{download.version}</h2>
|
||||||
<span className="font-medium italic">{download.date}</span>
|
<span className="italic">{download.date}</span>
|
||||||
<ul className="list-disc pl-5">
|
<ul>
|
||||||
{(download.bullets ?? []).map((bullet, index) => (
|
{(download.bullets ?? []).map((bullet, index) => (
|
||||||
<li key={index}>{bullet.point}</li>
|
<li key={index}>{bullet.point}</li>
|
||||||
))}
|
))}
|
||||||
|
|
Loading…
Reference in a new issue