From 44e97d4aea16029e6555f6313ce6ee5bdaf5e360 Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Sun, 15 Jun 2025 11:57:54 +0200 Subject: [PATCH] Remove the fucking background --- src/App.css | 9 +++++---- src/App.tsx | 3 +-- src/index.css | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/App.css b/src/App.css index b9d355d..05d8dc5 100644 --- a/src/App.css +++ b/src/App.css @@ -1,8 +1,9 @@ #root { - max-width: 1280px; - margin: 0 auto; - padding: 2rem; - text-align: center; + width: 100%; + height: 100%; + margin: 0; + padding: 0; + overflow: hidden; } .logo { diff --git a/src/App.tsx b/src/App.tsx index 44ce9fc..2f2c4b3 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,8 +1,7 @@ - import { BrowserRouter as Router, Routes, Route } from "react-router-dom"; import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; import { Toaster } from "@/components/ui/toaster"; -import Index from "./pages/Index"; +import { Index } from "./pages/Index"; import { RegionPage } from "./pages/RegionPage"; import { SystemView } from "./pages/SystemView"; import NotFound from "./pages/NotFound"; diff --git a/src/index.css b/src/index.css index c06c19d..22adf50 100644 --- a/src/index.css +++ b/src/index.css @@ -1,3 +1,4 @@ +@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap'); @@ -83,4 +84,3 @@ overflow: hidden; } } -