refactor: 프로젝트 카드 레이아웃 및 메타 정보 표시 개선

## 변경사항
- 프로젝트 카드 메타 정보를 key-value 형식으로 재구성
- 빈 값은 '-'로 표시하여 일관성 향상
- 버튼 텍스트 추가 (✏️ 수정, 🗑️ 삭제)
- 메인 콘텐츠 영역 최대폭 1600px 제한 및 중앙 정렬
- 그리드 정렬 개선

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Hyungi Ahn
2026-01-26 13:59:42 +09:00
parent ca33736ed4
commit cbf1ad9dad
2 changed files with 27 additions and 9 deletions

View File

@@ -150,6 +150,9 @@ body {
flex: 1;
padding: 2rem;
min-height: calc(100vh - 80px);
max-width: 1600px;
margin: 0 auto;
width: 100%;
}
.page-header {
@@ -426,6 +429,7 @@ body {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 1.5rem;
justify-content: center;
}
/* 작업자 카드 전용 스타일 */