From 082e1316c14e4f9c0c350e18910980038893d497 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 2 Aug 2025 17:44:35 -0400 Subject: [PATCH] Fix: set body background color (#5611) --- src/styles/globals.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/styles/globals.css b/src/styles/globals.css index be85ae43c..ce3dddf80 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -30,12 +30,13 @@ body, height: 100%; margin: 0; padding: 0; + background-color: rgb(var(--bg-color)); } #background { position: fixed; inset: 0; - z-index: -1; + z-index: 0; background-size: cover; background-position: center; background-repeat: no-repeat;