Skip to content

Commit

Permalink
fixed listing
Browse files Browse the repository at this point in the history
  • Loading branch information
Interperle committed Jan 12, 2025
1 parent 91cfe3e commit 9c522e7
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions frontend/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,28 @@ export default async function Home() {
<>
<div className="flex flex-col items-start justify-between space-y-4">
<Apl_Header />
<style>
{`
.markdown-body ul {
list-style-type: disc;
}
.markdown-body ol {
list-style-type: decimal;
}
.markdown-body ul ul {
list-style-type: circle;
}
.markdown-body ol ul {
list-style-type: disc;
}
.markdown-body ul ol {
list-style-type: lower-roman;
}
.markdown-body ol ol {
list-style-type: lower-alpha;
}
`}
</style>
<div
className="markdown-body"
dangerouslySetInnerHTML={{ __html: contentHtml }}
Expand Down

0 comments on commit 9c522e7

Please sign in to comment.