npx skillsauth add excatt/superclaude-plusplus responsiveInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
반응형 디자인 가이드를 실행합니다.
/* Mobile First */
/* 기본: 모바일 */
/* Tablet */
@media (min-width: 640px) { }
/* Small Desktop */
@media (min-width: 768px) { }
/* Desktop */
@media (min-width: 1024px) { }
/* Large Desktop */
@media (min-width: 1280px) { }
/* Extra Large */
@media (min-width: 1536px) { }
sm: 640px
md: 768px
lg: 1024px
xl: 1280px
2xl: 1536px
/* clamp(min, preferred, max) */
h1 {
font-size: clamp(1.5rem, 4vw, 3rem);
}
p {
font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
}
.container {
padding: clamp(1rem, 5vw, 3rem);
gap: clamp(1rem, 3vw, 2rem);
}
.card-container {
container-type: inline-size;
}
@container (min-width: 400px) {
.card {
display: flex;
flex-direction: row;
}
}
.container {
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
.item {
flex: 1 1 300px; /* grow shrink basis */
}
.nav {
display: flex;
flex-direction: column;
}
@media (min-width: 768px) {
.nav {
flex-direction: row;
justify-content: space-between;
}
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1rem;
}
.layout {
display: grid;
grid-template-areas:
"header"
"main"
"sidebar"
"footer";
}
@media (min-width: 768px) {
.layout {
grid-template-columns: 1fr 3fr;
grid-template-areas:
"header header"
"sidebar main"
"footer footer";
}
}
<img
src="image.jpg"
srcset="image-400.jpg 400w,
image-800.jpg 800w,
image-1200.jpg 1200w"
sizes="(max-width: 600px) 100vw,
(max-width: 1200px) 50vw,
33vw"
alt="설명"
>
<picture>
<source media="(min-width: 1024px)" srcset="desktop.jpg">
<source media="(min-width: 640px)" srcset="tablet.jpg">
<img src="mobile.jpg" alt="설명">
</picture>
.hero {
background-image: url('mobile.jpg');
}
@media (min-width: 768px) {
.hero {
background-image: url('desktop.jpg');
}
}
/* 또는 image-set */
.hero {
background-image: image-set(
url('image.webp') type('image/webp'),
url('image.jpg') type('image/jpeg')
);
}
<div class="
flex flex-col
md:flex-row
gap-4 md:gap-8
p-4 md:p-8
">
<div class="w-full md:w-1/3">Sidebar</div>
<div class="w-full md:w-2/3">Main</div>
</div>
<nav class="hidden md:block">Desktop Nav</nav>
<nav class="md:hidden">Mobile Nav</nav>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4">
<div>Item 1</div>
<div>Item 2</div>
<div>Item 3</div>
<div>Item 4</div>
</div>
/* 최소 44x44px */
button, a {
min-height: 44px;
min-width: 44px;
padding: 12px;
}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
.container {
padding-left: env(safe-area-inset-left);
padding-right: env(safe-area-inset-right);
padding-bottom: env(safe-area-inset-bottom);
}
Mobile:
- iPhone SE (375px)
- iPhone 14 (390px)
- Android (360px)
Tablet:
- iPad Mini (768px)
- iPad (820px)
- iPad Pro (1024px)
Desktop:
- Laptop (1366px)
- Desktop (1920px)
- Large (2560px)
1. F12 → Device Toolbar
2. 다양한 디바이스 선택
3. 반응형 모드로 크기 조절
4. 네트워크 쓰로틀링 테스트
## Responsive Design
### Breakpoints
```css
/* 브레이크포인트 정의 */
| 컴포넌트 | Mobile | Tablet | Desktop | |---------|--------|--------|---------| | Nav | 햄버거 | 아이콘 | 전체 | | Grid | 1열 | 2열 | 4열 |
/* 핵심 CSS */
---
요청에 맞는 반응형 디자인을 적용하세요.
testing
사용자 계획을 기존 도메인 모델에 대해 stress-test하는 인터뷰 세션. 용어를 날카롭게 다듬고, 결정이 굳어질 때마다 CONTEXT.md(도메인 어휘 사전)와 ADR을 인라인으로 갱신한다. 새 기능 요구사항 탐색은 `/brainstorm`을, 기존 도메인 모델·용어와의 정합성 점검은 이 스킬을 사용한다.
development
# Excel (XLSX) Spreadsheet Skill Claude Code supports comprehensive spreadsheet operations through the **xlsx** skill, enabling creation, editing, and analysis of Excel files (.xlsx, .xlsm, .csv, .tsv). ## Trigger - When user needs Excel spreadsheet creation or editing - Financial modeling or data analysis required - Spreadsheet formulas and calculations needed - Data import from CSV/TSV files ## Core Capabilities **Primary functions include:** - Creating new spreadsheets with formulas and f
tools
Generate structured implementation workflows from PRDs and feature requirements
development
실시간 통신 설계 가이드를 실행합니다.