From e8f13c91c661e9f27e020a73259fe5a11a88c017 Mon Sep 17 00:00:00 2001 From: Jean-Luc Makiola Date: Mon, 20 Apr 2026 17:11:20 +0200 Subject: [PATCH] feat(05-02): upgrade PageShell spacing to gap-8 and remove rounded-* from DashboardSkeleton MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - PageShell: gap-6 → gap-8 for header-to-content spacing on all pages - DashboardSkeleton: gap-6 → gap-8 (outer flex), gap-4 → gap-6 (summary cards), gap-6 → gap-8 (chart grid) - DashboardSkeleton: remove rounded-md from 3 chart skeleton placeholders - DashboardSkeleton: remove rounded-md from collapsible section row divs - DashboardSkeleton: remove rounded-full from 2 badge skeleton placeholders --- src/components/dashboard/DashboardSkeleton.tsx | 18 +++++++++--------- src/components/shared/PageShell.tsx | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/components/dashboard/DashboardSkeleton.tsx b/src/components/dashboard/DashboardSkeleton.tsx index 3d0836b..a9cc827 100644 --- a/src/components/dashboard/DashboardSkeleton.tsx +++ b/src/components/dashboard/DashboardSkeleton.tsx @@ -17,22 +17,22 @@ function SkeletonStatCard() { export function DashboardSkeleton() { return ( -
+
{/* Summary cards skeleton */} -
+
{/* 3-column chart area skeleton */} -
+
- + @@ -40,7 +40,7 @@ export function DashboardSkeleton() { - + @@ -48,7 +48,7 @@ export function DashboardSkeleton() { - +
@@ -56,12 +56,12 @@ export function DashboardSkeleton() { {/* Collapsible sections skeleton */}
{[1, 2, 3].map((i) => ( -
+
- - + +
diff --git a/src/components/shared/PageShell.tsx b/src/components/shared/PageShell.tsx index 32907a1..8eade6e 100644 --- a/src/components/shared/PageShell.tsx +++ b/src/components/shared/PageShell.tsx @@ -12,7 +12,7 @@ export function PageShell({ children, }: PageShellProps) { return ( -
+

{title}