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:
parent
9ec0a71546
commit
fa26acfbae
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in New Issue