From cd8afb720a0eb28630130c328ca9f120de9a65bb Mon Sep 17 00:00:00 2001 From: Patricio Marroquin <55117912+patricio0312rev@users.noreply.github.com> Date: Mon, 18 Mar 2024 08:51:42 -0500 Subject: [PATCH] fix: apply background color for body tag in dark mode (#105) --- src/app/styles/globals.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app/styles/globals.css b/src/app/styles/globals.css index 02fae0a1..cee871b3 100644 --- a/src/app/styles/globals.css +++ b/src/app/styles/globals.css @@ -37,3 +37,7 @@ @apply pr-[14px] } } + +.dark { + @apply bg-subtle-black +}