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 {
list-style-type: disc !important;
@apply bg-red-500;
@apply list-disc list-inside;
}
div.blog-wrapper.prose ul {
list-style-type: disc;
@apply bg-red-500;
}
div.blog-wrapper ul {
@apply list-decimal;
div.blog-wrapper ol {
@apply list-decimal list-inside;
}
div.blog-wrapper h1 {

View File

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