Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Living wiki of UI design patterns and best practices built with Fumadocs, Next.js, and Base UI components.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
rules/duration-max-300ms.md
1---2title: Max 300ms for User Actions3impact: HIGH4tags: duration, max, user-action5---67## Max 300ms for User Actions89User-initiated animations must not exceed 300ms.1011**Incorrect (exceeds limit):**1213```tsx14<motion.div transition={{ duration: 0.5 }} />15```1617**Correct (within limit):**1819```tsx20<motion.div transition={{ duration: 0.25 }} />21```22