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/ux-fitts-target-size.md
1---2title: Size Interactive Targets for Easy Clicking3impact: HIGH4tags: ux, fitts, target-size5---67## Size Interactive Targets for Easy Clicking89The bigger something is, the easier it is to click. Make interactive elements large enough to hit comfortably.1011**Incorrect (tiny click target):**1213```css14.icon-button {15width: 16px;16height: 16px;17padding: 0;18}19```2021**Correct (comfortable target):**2223```css24.icon-button {25width: 32px;26height: 32px;27padding: 8px;28}29```3031Reference: Fitts, P. M. (1954). The information capacity of the human motor system.32