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-exit-ease-in.md
1---2title: Ease-In for Exits3impact: HIGH4tags: easing, exit, ease-in5---67## Ease-In for Exits89Exits must use ease-in (build momentum before departure).1011**Incorrect (ease-out for exit):**1213```css14.modal-exit { animation-timing-function: ease-out; }15```1617**Correct (ease-in for exit):**1819```css20.modal-exit { animation-timing-function: ease-in; }21```22