feat: US-014 - Responsive verification and fixes across breakpoints
- Fix grid overflow at mobile: add minWidth:0 + overflow:hidden to Card - Scale ParentSection h2 responsively (1.5rem mobile → 2.4rem desktop) - Make KPI grid single-column below 480px, 2-column above - Fix SubNav alignment: left-aligned on mobile, centered on md+ - Fix SubNav tileIds to match restructured dashboard sections - Add data-tile-id anchors to experience/skills/education subsections
This commit is contained in:
@@ -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 (
|
||||
|
||||
Reference in New Issue
Block a user