fix(M01): 로직 개선 시험 — 상세 컨테이너 넷의 바깥 간격 · 안쪽 칸 간격 · 제목 크기를 한 양식으로

- 컨테이너 사이 12px · 안쪽 칸 사이 8px · 제목 16px 굵게(넓은 화면 · 340px 폭 모두 같은 규칙)

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_016WRFJmmhPi4exAzHgPZHMT
This commit is contained in:
2026-09-21 23:18:46 +09:00
co-authored by Claude Sonnet 5
parent f6c3e25c5d
commit 7009a94e7c
@@ -5,6 +5,20 @@
border-radius: var(--radius-lg);
}
/* 컨테이너 넷 한 양식 — 바깥 간격 · 안쪽 칸 사이 간격 · 제목 크기(폭이 좁아도 같은 규칙) */
.m01lab__box + .m01lab__box {
margin-top: var(--spacing-12);
}
.m01lab__box.m01-logic__section {
gap: var(--spacing-8);
}
.m01lab__box > .m01-logic__section-head h3 {
font-size: var(--text-body);
font-weight: 600;
}
.m01lab__info {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));