fix(responsive): Phase 3 spec compliance 수정

- Blog: 태그 필터 칩 바 모바일 가로 스크롤 추가
- BlogMarketing: FAB 전 탭에서 표시 + 대시보드 480px 1컬럼
- Subscription: PullToRefresh refreshKey 패턴 적용, FAB→공고 목록 탭 이동
- Todo: FAB 라벨 "할일 추가"로 spec 일치

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-23 15:02:12 +09:00
parent c7cad9da61
commit 901cfd7e1b
5 changed files with 25 additions and 51 deletions

View File

@@ -260,7 +260,7 @@ const Todo = () => {
className="button primary"
onClick={() => setFormOpen((v) => !v)}
>
{formOpen ? '취소' : '+ 태스크 추가'}
{formOpen ? '취소' : '+ 할일 추가'}
</button>
<button
type="button"
@@ -383,12 +383,12 @@ const Todo = () => {
<MobileSheet
open={addSheetOpen}
onClose={() => { setAddSheetOpen(false); setForm(emptyForm); }}
title="태스크 추가"
title="할일 추가"
>
{addForm}
</MobileSheet>
<FAB onClick={() => setAddSheetOpen(true)} label="태스크 추가" />
<FAB onClick={() => setAddSheetOpen(true)} label="할일 추가" />
</div>
</PullToRefresh>
);