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-small-state.md
1---2title: Small State Changes 180-260ms3impact: MEDIUM4tags: duration, state-change5---67## Small State Changes 180-260ms89Small state changes should use 180-260ms duration.1011**Correct:**1213```css14.toggle { transition: transform 200ms ease; }15```16