From 84ba9b62abd9a544913a017444a9c63c72dc32e2 Mon Sep 17 00:00:00 2001 From: Coppertine <37494321+Coppertine@users.noreply.github.com> Date: Sun, 18 May 2025 18:18:35 +1000 Subject: [PATCH] Applied simple fix for nested ul/ol's Also seperates li's a bit for better readability. --- src/components/markdown/MarkdownView.vue | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/components/markdown/MarkdownView.vue b/src/components/markdown/MarkdownView.vue index 665d778..023baaf 100644 --- a/src/components/markdown/MarkdownView.vue +++ b/src/components/markdown/MarkdownView.vue @@ -76,11 +76,14 @@ function MoveToHash() { ul, ol { - @apply list-inside list-disc mt-2; + @apply list-inside list-disc mt-2; li { - @apply text-sm; + @apply text-sm mt-1; } + ul,ol { + @apply ml-4 mt-1; + } } pre { @@ -120,4 +123,4 @@ function MoveToHash() { @apply bg-dark-2 p-6 rounded-2xl border-highlight border-2; } } - \ No newline at end of file +