From c2b3c566640219328e3edb902ab415b76105dbe0 Mon Sep 17 00:00:00 2001 From: umsangdon Date: Thu, 3 Sep 2026 20:35:29 +0900 Subject: [PATCH] =?UTF-8?q?fix(B03):=20=EC=BB=A8=ED=85=8C=EC=9D=B4?= =?UTF-8?q?=EB=84=88=20=ED=8C=A8=EB=94=A9=20=EB=B3=B5=EA=B5=AC=20=E2=80=94?= =?UTF-8?q?=20=ED=85=8C=EB=A7=88=EC=97=90=20=EC=97=86=EB=8A=94=20`--spacin?= =?UTF-8?q?g-20`=20=EC=82=AC=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `padding: var(--spacing-20)` 은 정의되지 않은 토큰이라 선언째 무효가 되어 카드 컨테이너의 패딩이 통째로 사라졌음(2026-09-03 사용자 보고). 16px 토큰으로 교체. 검증: 실측 계산값 — 컨테이너 16px, 카드 12/16px, 선택 바 12/16px, 안내 문단 12px. Co-Authored-By: Claude Opus 5 (1M context) --- B03_FileInput/B03_FileInput_UI_Style.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/B03_FileInput/B03_FileInput_UI_Style.css b/B03_FileInput/B03_FileInput_UI_Style.css index e77e94c2..d53a46a4 100644 --- a/B03_FileInput/B03_FileInput_UI_Style.css +++ b/B03_FileInput/B03_FileInput_UI_Style.css @@ -21,8 +21,9 @@ flex-direction: column; gap: var(--spacing-16); background: var(--color-canvas, #ffffff); - /* 여백 32 → 20 (2026-09-03) — 고르는 자리만 남기고 안내를 좌측 패널로 뺐다. */ - padding: var(--spacing-20); + /* 여백 32 → 16 (2026-09-03) — 고르는 자리만 남기고 안내를 좌측 패널로 뺐다. + `--spacing-20`은 테마에 없는 토큰이라 선언째 무효가 된다(패딩이 통째로 사라짐). */ + padding: var(--spacing-16); border-radius: var(--radius-large, 24px); /* Wiza 24px 대형 둥글기 */ border: 1px solid var(--color-mist, #e6e2e3); box-shadow: var(--shadow-lg);