From da429585da23ec878f600610cbcbf360adc58169 Mon Sep 17 00:00:00 2001 From: Innei Date: Wed, 19 Nov 2025 14:00:33 +0800 Subject: [PATCH] feat: add background color to body in global styles - Applied a black background color to the body element in the global CSS file to enhance the visual design of the landing page. Signed-off-by: Innei --- apps/landing/src/styles/globals.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/landing/src/styles/globals.css b/apps/landing/src/styles/globals.css index 21aa848f..b9367aef 100644 --- a/apps/landing/src/styles/globals.css +++ b/apps/landing/src/styles/globals.css @@ -296,3 +296,7 @@ html *::-webkit-scrollbar-thumb:active { html *::-webkit-scrollbar-corner { background: var(--color-background-secondary); } + +html body { + @apply bg-black; +}