fix(homepage): use direct conditionals for mini abacus padding

Replace spread operator with direct conditional values for py and px
to ensure proper application with Panda CSS.

🤖 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 06:10:44 -05:00
parent 2f0304eb81
commit 38ef16a8f9

View File

@@ -370,8 +370,8 @@ export default function HomePage() {
textAlign: 'center',
bg: 'rgba(255, 255, 255, 0.1)',
borderRadius: 'lg',
p: '2',
...(i === 0 && { py: '5', px: '3' }),
py: i === 0 ? '5' : '2',
px: i === 0 ? '3' : '2',
})}
>
{i === 0 ? <MiniAbacus /> : skill.icon}