fix(homepage): add overflow hidden to skill cards

Add overflow: hidden to skill card containers to properly contain
content within card bounds and prevent visual overflow issues.

🤖 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:19:34 -05:00
parent 54cedbe03a
commit 5070d8d64f
1 changed files with 1 additions and 0 deletions

View File

@ -256,6 +256,7 @@ export default function HomePage() {
: '0 4px 12px rgba(0, 0, 0, 0.3)',
transition: 'all 0.2s',
cursor: 'pointer',
overflow: 'hidden',
_hover: {
bg: isSelected
? 'linear-gradient(135deg, rgba(250, 204, 21, 0.2), rgba(250, 204, 21, 0.12))'