From e6d32bc15183fa3f2bd09e0abc7431d1a174c407 Mon Sep 17 00:00:00 2001 From: nessi Date: Tue, 3 Feb 2026 13:11:55 +0100 Subject: [PATCH] Remove redundant background style settings. The background color settings for `document.body` and `document.documentElement` were removed as they are not needed. This simplifies the global styling without affecting functionality. --- frontend/src/App.jsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index 5cc17d8..db72bde 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -243,8 +243,6 @@ export default function App() { document.body.style.margin = "0"; document.documentElement.style.padding = "0"; document.body.style.padding = "0"; - document.documentElement.style.background = "#1c140d"; - document.body.style.background = "#1c140d"; }, []); // ✅ Global CSS (Hover komplett weg + sauberes Scroll-Verhalten)