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-press-hover.md
1---2title: Press and Hover 120-180ms3impact: MEDIUM4tags: duration, press, hover5---67## Press and Hover 120-180ms89Press and hover interactions should use 120-180ms duration.1011**Incorrect (too slow):**1213```css14.button:hover { transition: background-color 400ms; }15```1617**Correct (appropriate duration):**1819```css20.button:hover { transition: background-color 150ms; }21```22