Update AppImage

This commit is contained in:
MacRimi
2025-10-23 19:39:24 +02:00
parent a1e3e12c6b
commit dadb215ce0
2 changed files with 4 additions and 15 deletions

View File

@@ -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 */

View File

@@ -321,7 +321,7 @@ export function ProxmoxDashboard() {
showNavigation ? "translate-y-0" : "-translate-y-full"
}`}
style={{
top: "var(--header-height, 88px)",
top: "88px",
}}
>
<div className="container mx-auto px-4 md:px-6 pt-4 md:pt-6 pb-4">
@@ -473,10 +473,7 @@ export function ProxmoxDashboard() {
</div>
</div>
<div
className="container mx-auto px-4 md:px-6 py-4 md:py-6"
style={{ paddingTop: "var(--content-padding, 160px)" }}
>
<div className="container mx-auto px-4 md:px-6 py-4 md:py-6" style={{ paddingTop: "160px" }}>
<Tabs value={activeTab} onValueChange={setActiveTab} className="space-y-4 md:space-y-6">
<TabsContent value="overview" className="space-y-4 md:space-y-6 mt-0">
<SystemOverview key={`overview-${componentKey}`} />