fix: tighten dashboard vertical spacing

Reduce spacing now that top header is removed:
- Main content top padding: pt-6 → pt-4
- Header section: mb-8 → mb-6
- Chart section: mb-8 → mb-6
- Grid sections: mb-8 → mb-6
- Site name margin: mb-2 → mb-1
- Header inner gap: mb-4 → mb-3
This commit is contained in:
Usman Baig
2026-03-19 12:10:30 +01:00
parent dc7bffdf56
commit 7cbfbc54ca
2 changed files with 9 additions and 9 deletions

View File

@@ -38,7 +38,7 @@ export default function DashboardShell({
/>
<div className="flex-1 flex flex-col min-w-0 overflow-hidden">
<ContentHeader onMobileMenuOpen={openMobile} />
<main className="flex-1 overflow-y-auto pt-6">
<main className="flex-1 overflow-y-auto pt-4">
{children}
</main>
</div>