diff --git a/AppImage/app/globals.css b/AppImage/app/globals.css index 7232e9d..1326470 100644 --- a/AppImage/app/globals.css +++ b/AppImage/app/globals.css @@ -49,9 +49,7 @@ --sidebar-border: var(--border); --sidebar-ring: var(--ring); - /* Added layout variables for header and navigation positioning */ - --header-height: 88px; - --content-padding: 160px; + /* Removed custom layout variables that were causing compilation issues */ } /* ===================== */ @@ -102,13 +100,7 @@ --sidebar-ring: var(--ring); } -/* Added media query for mobile layout variables */ -@media (max-width: 1023px) { - :root { - --header-height: 140px; - --content-padding: 220px; - } -} +/* Removed media query for mobile layout variables */ @theme inline { /* optional: --font-sans, --font-serif, --font-mono if they are applied in the layout.tsx */ diff --git a/AppImage/components/proxmox-dashboard.tsx b/AppImage/components/proxmox-dashboard.tsx index 1520e30..70367c1 100644 --- a/AppImage/components/proxmox-dashboard.tsx +++ b/AppImage/components/proxmox-dashboard.tsx @@ -321,7 +321,7 @@ export function ProxmoxDashboard() { showNavigation ? "translate-y-0" : "-translate-y-full" }`} style={{ - top: "var(--header-height, 88px)", + top: "88px", }} >
@@ -473,10 +473,7 @@ export function ProxmoxDashboard() {
-
+