WIP(style): UI 컴포넌트 하드코딩 제거 및 CSS 통합 (진행 중)

- 작업 상태: 진행 중 (Work In Progress)
- 주요 변경 사항:
  1. CSS 파일 통합: HWModal, SWModal, ListFactory 등에서 인라인 스타일(style 속성) 전면 제거 및 클래스 기반으로 재작성
  2. 폰트/타이포그래피 스케일업: 최소 폰트 14px 기준으로 전체 텍스트 크기 상향 및 굵기(font-weight) 상향 조정
  3. GNB(상단바) 레이아웃 개편: 2단 구조(로고 라인 / 메뉴 라인)로 변경 및 카테고리 텍스트 라벨 생략을 통한 간결화
  4. 로고 이미지 교체: image 92.png로 업데이트 및 경로 정리
  5. 디자인 가이드 분리: README에서 design_rule.md로 디자인 정책 문서 독립

* 참고: 현재 디자인 검토를 위한 중간 반영 상태이며, 피드백에 따라 추가 수정 예정임.
This commit is contained in:
2026-06-12 15:57:20 +09:00
parent 56abdddbc7
commit b169176d57
12 changed files with 420 additions and 302 deletions

View File

@@ -19,8 +19,8 @@
.guide-tab {
padding: 0.75rem 1.25rem;
font-size: 18px;
font-weight: 600;
font-size: 24px;
font-weight: 700;
color: var(--text-muted);
cursor: pointer;
border-bottom: 2px solid transparent;
@@ -72,7 +72,7 @@
}
.guide-section h3 {
font-size: 1.3rem;
font-size: 1.73rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid var(--primary-color);
color: var(--primary-color);
@@ -83,7 +83,7 @@
}
.guide-text {
font-size: 18px;
font-size: 24px;
color: var(--text-main);
line-height: 1.7;
margin: 0;
@@ -127,8 +127,8 @@
border-radius: 50%;
background-color: var(--primary-color);
color: white;
font-size: 17px;
font-weight: 700;
font-size: 23px;
font-weight: 800;
display: flex;
align-items: center;
justify-content: center;
@@ -136,14 +136,14 @@
}
.flow-step .step-label {
font-weight: 700;
font-weight: 800;
color: var(--text-main);
font-size: 18px;
font-size: 24px;
display: block;
}
.flow-step .step-desc {
font-size: 17px;
font-size: 23px;
color: var(--text-muted);
line-height: 1.5;
margin-top: 4px;
@@ -159,13 +159,13 @@
.guide-info-table {
width: 100%;
border-collapse: collapse;
font-size: 18px;
font-size: 24px;
}
.guide-info-table th {
background: #f8faf9;
color: var(--primary-color);
font-weight: 700;
font-weight: 800;
padding: 0.75rem;
text-align: left;
border-bottom: 1px solid var(--border-color);
@@ -182,7 +182,7 @@
background: var(--primary-light);
border-left: 4px solid var(--primary-color);
padding: 1rem;
font-size: 18px;
font-size: 24px;
color: var(--primary-color);
line-height: 1.6;
}