Agent skill
tailwindcss-responsive
Responsive design, breakpoints, container queries
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/tailwindcss-responsive
SKILL.md
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>
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?