smithery/fusengine

tailwindcss-responsive

Use when applying responsive variants at different screen widths, defining a custom breakpoint, or building container-query-based components.

Installation

$ npx skills add smithery/fusengine --skill tailwindcss-responsive

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/fusengine · top by installs.

npx skills add smithery/fusengine

Browse all from smithery/fusengine

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,329 B
  • docs SUMMARY.md 79 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

<objective> Documents responsive design utilities in Tailwind CSS v4: the default breakpoint scale (sm/md/lg/xl/2xl), defining custom breakpoints via @theme, container queries (@container, @md, @lg container-relative variants), and the mobile-first authoring pattern (base styles first, larger-breakpoint overrides layered on top). </objective>

Responsive Design

Default Breakpoints

Variant Size CSS
sm: 40rem (640px) @media (width >= 40rem)
md: 48rem (768px) @media (width >= 48rem)
lg: 64rem (1024px) @media (width >= 64rem)
xl: 80rem (1280px) @media (width >= 80rem)
2xl: 96rem (1536px) @media (width >= 96rem)

Custom breakpoint

@theme {
  --breakpoint-3xl: 120rem;
}
/* Usage: 3xl:grid-cols-6 */

Container Queries v4

<div class="@container">
  <div class="@md:grid-cols-2 @lg:grid-cols-3">
    <!-- Responsive to container -->
  </div>
</div>

Mobile-first

<div class="text-sm md:text-base lg:text-lg">
  <!-- Small screens first -->
</div>