feat: spring bounce hover animation on dashboard cards

card-interactive utility now bounces on hover (translateY(-4px) with
cubic-bezier(0.34, 1.56, 0.64, 1) spring easing). Applies to stat
cards, session items, and onboarding checklist. Knowledge Base and
Team Summary inner items also bounce individually.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-22 23:03:12 +00:00
parent e41810ee01
commit 25241e5351
3 changed files with 13 additions and 3 deletions

View File

@@ -166,9 +166,13 @@
background: var(--color-bg-card);
border: 1px solid var(--color-border-default);
border-radius: 8px;
transition: border-color 200ms ease;
transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1),
border-color 200ms ease,
box-shadow 200ms ease;
&:hover {
transform: translateY(-4px);
border-color: var(--color-border-hover);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
}