From f6a7d6fdd381bec6bd7befa0d112d954ec6cf120 Mon Sep 17 00:00:00 2001 From: Artemy Date: Mon, 17 Oct 2022 16:02:23 +0300 Subject: [PATCH] css compact --- src/index.css | 37 ++++++++++--------------------------- 1 file changed, 10 insertions(+), 27 deletions(-) diff --git a/src/index.css b/src/index.css index 5e9a960..18e334a 100644 --- a/src/index.css +++ b/src/index.css @@ -25,53 +25,36 @@ } .md blockquote{ - @apply border-l-4; - @apply pl-2; - @apply rounded-lg; - @apply bg-zinc-200; - @apply border-zinc-400; - - @apply dark:bg-zinc-800; - @apply dark:border-zinc-600; + @apply border-l-4 pl-2 rounded-lg; + @apply bg-zinc-200 border-zinc-400; + @apply dark:bg-zinc-800 dark:border-zinc-600; } .md hr { - @apply mb-4; - @apply mt-4; - @apply border-2; - @apply rounded-lg; + @apply mb-4 mt-4 border-2 rounded-lg; } .md ul{ - @apply list-disc; - @apply list-inside; + @apply list-disc list-inside; } .md li ul { - @apply list-disc; - @apply list-inside; - @apply ml-2; + @apply list-disc list-inside ml-2; } .md ol{ - @apply list-decimal; - @apply list-inside; + @apply list-decimal list-inside; } .md li ol{ - @apply list-decimal; - @apply list-inside; - @apply ml-2; + @apply list-decimal list-inside ml-2; } .md code { @apply p-1; @apply rounded-lg; - @apply bg-zinc-200; - @apply border-zinc-400; - - @apply dark:bg-zinc-800; - @apply dark:border-zinc-600; + @apply bg-zinc-200 border-zinc-400; + @apply dark:bg-zinc-800 dark:border-zinc-600; } .md a {