From ca9a55d29e3659922be52d7e82c62d19f75ffe35 Mon Sep 17 00:00:00 2001 From: yabo0812 Date: Thu, 23 Oct 2025 13:52:38 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9C=A0=EC=A0=80=EC=8A=A4=ED=86=A0=EB=A6=AC-?= =?UTF-8?q?=EC=84=A4=EA=B3=84=EC=84=9C-=ED=94=84=EB=A1=9C=ED=86=A0?= =?UTF-8?q?=ED=83=80=EC=9E=85=20=EC=9D=BC=EA=B4=80=EC=84=B1=20=EA=B0=9C?= =?UTF-8?q?=EC=84=A0=20=EB=B0=8F=20Mobile=20=EB=84=A4=EB=B9=84=EA=B2=8C?= =?UTF-8?q?=EC=9D=B4=EC=85=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 요구사항설계검토-report.md 작성 및 개선사항 반영 - 화면번호를 프로토타입 파일명 기준으로 통일 (09, 10, 11, 12) - 유저스토리에 화면정보 추가 (UFR-MEET-046, UFR-MEET-047) - 카테고리 필터에서 "공유받은 회의" 제거 - Mobile 하단 네비게이션 3개 메뉴로 수정 (홈/회의록/Todo) - 프로필 메뉴 제거 (Desktop 사이드바로 통합) - UI/UX 설계서 버전 1.5 업데이트 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .claude/settings.local.json | 11 + design/uiux/prototype/02-대시보드.html | 28 +- design/uiux/prototype/09-Todo관리.html | 119 ++--- design/uiux/prototype/12-회의록목록조회.html | 47 +- design/uiux/prototype/common.css | 59 ++- design/uiux/uiux.md | 34 +- design/uiux/요구사항설계검토-report.md | 462 +++++++++++++++++++ design/userstory.md | 10 +- 8 files changed, 662 insertions(+), 108 deletions(-) create mode 100644 .claude/settings.local.json create mode 100644 design/uiux/요구사항설계검토-report.md diff --git a/.claude/settings.local.json b/.claude/settings.local.json new file mode 100644 index 0000000..c08ac64 --- /dev/null +++ b/.claude/settings.local.json @@ -0,0 +1,11 @@ +{ + "permissions": { + "allow": [ + "Bash(git pull:*)", + "Bash(git add:*)", + "Bash(git commit:*)" + ], + "deny": [], + "ask": [] + } +} diff --git a/design/uiux/prototype/02-대시보드.html b/design/uiux/prototype/02-대시보드.html index b51660b..a636f53 100644 --- a/design/uiux/prototype/02-대시보드.html +++ b/design/uiux/prototype/02-대시보드.html @@ -34,24 +34,10 @@ } } - /* 통계 카드 */ - .stats-grid { - display: grid; - grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); - gap: var(--space-md); - margin-bottom: var(--space-xl); - } - - .stat-card { - background: var(--white); - border-radius: var(--radius-lg); - padding: var(--space-lg); - box-shadow: var(--shadow-sm); - } - + /* 통계 카드 - common.css의 공통 스타일 사용 */ .stat-icon { - font-size: 32px; - margin-bottom: var(--space-sm); + font-size: 24px; + margin-bottom: var(--space-xs); } .stat-label { @@ -98,7 +84,7 @@ margin-bottom: var(--space-xl); } - @media (min-width: 768px) { + @media (min-width: 640px) { .meeting-grid { grid-template-columns: repeat(2, 1fr); } @@ -110,6 +96,12 @@ } } + @media (min-width: 1440px) { + .meeting-grid { + grid-template-columns: repeat(4, 1fr); + } + } + .meeting-card { background: var(--white); border-radius: var(--radius-lg); diff --git a/design/uiux/prototype/09-Todo관리.html b/design/uiux/prototype/09-Todo관리.html index a9d4226..b12a2dc 100644 --- a/design/uiux/prototype/09-Todo관리.html +++ b/design/uiux/prototype/09-Todo관리.html @@ -7,42 +7,16 @@