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:
@@ -275,7 +275,7 @@ export default function HomePage() {
|
|||||||
className={css({
|
className={css({
|
||||||
fontSize: '3xl',
|
fontSize: '3xl',
|
||||||
width: '75px',
|
width: '75px',
|
||||||
height: { base: '115px', lg: '140px' },
|
minHeight: { base: '115px', lg: '140px' },
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
justifyContent: 'center',
|
justifyContent: 'center',
|
||||||
|
|||||||
Reference in New Issue
Block a user