diff --git a/src/components/Card.tsx b/src/components/Card.tsx index a5e9fff..6f2b279 100644 --- a/src/components/Card.tsx +++ b/src/components/Card.tsx @@ -20,6 +20,8 @@ export function Card({ children, full, className, tileId }: CardProps) { boxShadow: isHovered ? 'var(--shadow-md)' : 'var(--shadow-sm)', transition: 'box-shadow 0.2s, border-color 0.2s', gridColumn: full ? '1 / -1' : undefined, + minWidth: 0, + overflow: 'hidden', } return ( diff --git a/src/components/DashboardLayout.tsx b/src/components/DashboardLayout.tsx index 58dc190..1959029 100644 --- a/src/components/DashboardLayout.tsx +++ b/src/components/DashboardLayout.tsx @@ -392,12 +392,18 @@ export function DashboardLayout() { {/* Two-column experience/skills grid */}
- - +
+ +
+
+ +
{/* Education subsection */} - +
+ +
diff --git a/src/components/ParentSection.tsx b/src/components/ParentSection.tsx index d5c151c..42f16ac 100644 --- a/src/components/ParentSection.tsx +++ b/src/components/ParentSection.tsx @@ -12,8 +12,8 @@ export function ParentSection({ title, children, className, tileId }: ParentSect return (

-
+
{kpis.map((kpi) => ( ))}