Files
Rohit Ghumare c3f43d8b61 Expand toolkit to 135 agents, 120 plugins, 796 total files
- Add 60 new agents across all 10 categories (75 -> 135)
- Add 95 new plugins with command files (25 -> 120)
- Update all agents to use model: opus
- Update README with complete plugin/agent tables
- Update marketplace.json with all 120 plugins
2026-02-04 21:08:28 +00:00

1.4 KiB

/add-breakpoints - Add Responsive Breakpoints

Implement responsive design breakpoints for a component or page.

Steps

  1. Identify the target component or page to make responsive
  2. Define breakpoints aligned with the design system: mobile (< 640px), tablet (640-1024px), desktop (> 1024px)
  3. Analyze the current layout and identify elements that need responsive behavior
  4. Implement mobile-first styles as the base layout
  5. Add tablet breakpoint styles: adjust grid columns, spacing, font sizes
  6. Add desktop breakpoint styles: wider containers, side-by-side layouts
  7. Handle images responsively: srcset, sizes, object-fit, aspect-ratio
  8. Adjust typography scale across breakpoints for readability
  9. Handle navigation: mobile hamburger menu, tablet condensed, desktop full nav
  10. Test touch targets: minimum 44x44px on mobile devices
  11. Add container queries for component-level responsiveness if supported
  12. Verify layout at all breakpoints and in-between sizes

Rules

  • Always design mobile-first and add complexity for larger screens
  • Use relative units (rem, em, %) instead of fixed pixels for layout
  • Minimum touch target size of 44x44px on mobile
  • Do not hide critical content at any breakpoint; rearrange instead
  • Test at exact breakpoint boundaries and between breakpoints
  • Use CSS Grid or Flexbox for responsive layouts, not floats
  • Ensure text remains readable (16px minimum) at all breakpoints