diff --git a/components/dashboard/DashboardShell.tsx b/components/dashboard/DashboardShell.tsx index d5772bb..190b1d6 100644 --- a/components/dashboard/DashboardShell.tsx +++ b/components/dashboard/DashboardShell.tsx @@ -11,7 +11,7 @@ const Sidebar = dynamic(() => import('./Sidebar'), { // so page content never occupies the sidebar zone loading: () => (
@@ -31,15 +31,15 @@ export default function DashboardShell({ const openMobile = useCallback(() => setMobileOpen(true), []) return ( -
+
- {/* Content panel — rounded on all corners with slight inset to separate from sidebar */} -
+ {/* Content panel — rounded corners, inset from edges. The left border doubles as the sidebar's right edge. */} +
{children} diff --git a/components/dashboard/Sidebar.tsx b/components/dashboard/Sidebar.tsx index 4fcbe2e..4f3b488 100644 --- a/components/dashboard/Sidebar.tsx +++ b/components/dashboard/Sidebar.tsx @@ -514,7 +514,7 @@ export default function Sidebar({ <> {/* Desktop — ssr:false means this only renders on client, no hydration flash */}