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.
This commit is contained in:
2026-02-03 13:11:55 +01:00
parent 9fd8934439
commit e6d32bc151

View File

@@ -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)