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 @@