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/easing-linear-only-progress.md
1---2title: Linear Easing Only for Progress3impact: MEDIUM4tags: easing, linear, progress5---67## Linear Easing Only for Progress89Linear easing only for progress bars and time representation.1011**Incorrect (linear for motion):**1213```css14.card-slide { transition: transform 200ms linear; }15```1617**Correct (linear for progress):**1819```css20.progress-bar { transition: width 100ms linear; }21```22