FIX: Fixed the list rendering

This commit is contained in:
Hayden Hargreaves 2025-02-24 10:19:06 -07:00
parent 0961df361c
commit f46e87997d
2 changed files with 3 additions and 14 deletions

View File

@ -17,17 +17,11 @@
} }
div.blog-wrapper ul { div.blog-wrapper ul {
list-style-type: disc !important; @apply list-disc list-inside;
@apply bg-red-500;
} }
div.blog-wrapper.prose ul { div.blog-wrapper ol {
list-style-type: disc; @apply list-decimal list-inside;
@apply bg-red-500;
}
div.blog-wrapper ul {
@apply list-decimal;
} }
div.blog-wrapper h1 { div.blog-wrapper h1 {

View File

@ -6,8 +6,3 @@
<div class="blog-wrapper prose"> <div class="blog-wrapper prose">
{@html data.post.content} {@html data.post.content}
</div> </div>
<ul class="list-disc">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>