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 <tukon479@gmail.com>
This commit is contained in:
Innei
2025-11-19 14:00:33 +08:00
parent c1dc142f41
commit da429585da

View File

@@ -296,3 +296,7 @@ html *::-webkit-scrollbar-thumb:active {
html *::-webkit-scrollbar-corner {
background: var(--color-background-secondary);
}
html body {
@apply bg-black;
}