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