From 10fd170833bd7e0fb0061a4ffa71aa70e19fa752 Mon Sep 17 00:00:00 2001 From: Thomas Miceli <27960254+thomiceli@users.noreply.github.com> Date: Mon, 16 Oct 2023 19:20:09 +0900 Subject: [PATCH] Fix markdown render dark background (#137) --- public/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/public/style.css b/public/style.css index 93c98af..cd71221 100644 --- a/public/style.css +++ b/public/style.css @@ -152,3 +152,7 @@ dl.dl-config dt { dl.dl-config dd { @apply ml-1 col-span-2 break-words; } + +.markdown-body { + @apply dark:bg-gray-900 !important; +}