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:
parent
54cedbe03a
commit
5070d8d64f
|
|
@ -256,6 +256,7 @@ export default function HomePage() {
|
||||||
: '0 4px 12px rgba(0, 0, 0, 0.3)',
|
: '0 4px 12px rgba(0, 0, 0, 0.3)',
|
||||||
transition: 'all 0.2s',
|
transition: 'all 0.2s',
|
||||||
cursor: 'pointer',
|
cursor: 'pointer',
|
||||||
|
overflow: 'hidden',
|
||||||
_hover: {
|
_hover: {
|
||||||
bg: isSelected
|
bg: isSelected
|
||||||
? 'linear-gradient(135deg, rgba(250, 204, 21, 0.2), rgba(250, 204, 21, 0.12))'
|
? 'linear-gradient(135deg, rgba(250, 204, 21, 0.2), rgba(250, 204, 21, 0.12))'
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue