fix(homepage): prevent skill card overflow

Change abacus container height to minHeight to prevent content
overflow in skill cards. This allows the container to grow as
needed while maintaining minimum dimensions.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Thomas Hallock 2025-10-20 19:18:23 -05:00
parent 9ec0a71546
commit fa26acfbae
1 changed files with 1 additions and 1 deletions

View File

@ -275,7 +275,7 @@ export default function HomePage() {
className={css({
fontSize: '3xl',
width: '75px',
height: { base: '115px', lg: '140px' },
minHeight: { base: '115px', lg: '140px' },
display: 'flex',
alignItems: 'center',
justifyContent: 'center',