[구현] narrow/wide 페이지 선언 + 특수 페이지 점검
ID: 244d8079-b459-43fd-8e80-0edc2f32cd92
## 작업 1: narrow 페이지 선언 (4개)
아래 뷰에서 자체 `max-w-2xl mx-auto` 제거 + 파일 상단에 `<% content_for(:layout_width, 'narrow') %>` 추가:
- settings/show.html.erb
- profiles/show.html.erb
- groups/edit.html.erb
- groups/new.html.erb
## 작업 2: wide 페이지 선언 (5개)
아래 뷰에서 자체 max-w 제거 + 파일 상단에 `<% content_for(:layout_width, 'wide') %>` 추가:
- stats/index.html.erb — wide 선언 추가
- tongtok/index.html.erb — `content_for(:wide_layout, true)` → `content_for(:layout_width, 'wide')` 교체
- groups/show.html.erb — 자체 max-w-4xl 제거 + wide 선언
- groups/index.html.erb — 자체 max-w-4xl 제거 + wide 선언
- attendance_stats/show.html.erb — 자체 max-w-4xl 제거 + wide 선언
## 작업 3: 특수 페이지 점검
아래 페이지는 현재 max-w를 유지 (변경 불필요 확인):
- pages/privacy, pages/terms (max-w-3xl)
- attendances/show (max-w-md)
- sessions/new (auth 레이아웃)
- group_joins/show (max-w-lg)
- tongtok/read.html.erb (max-w-lg — 성경 읽기 가독성)
주의: 중복 px/py도 함께 제거, 내부 spacing은 유지
첨부 이미지
이미지 추가 (Ctrl+V로 붙여넣기 또는 클릭)
JPEG, PNG, GIF, WebP / 최대 10MB
활동 로그
-
Wwidth-dev narrow/wide 선언 + 특수 점검 완료
2026년 03월 04일 03:56:44
상세 보기
## 변경 파일 (8개 수정)\n\n### Narrow 선언 (4개)\n- `app/views/settings/show.html.erb` — max-w-2xl mx-auto px-4 py-8 제거 + narrow 선언\n- `app/views/profiles/show.html.erb` — max-w-2xl mx-auto px-4 py-8 제거 + narrow 선언\n- `app/views/groups/edit.html.erb` — max-w-2xl mx-auto 제거 + narrow 선언\n- `app/views/groups/new.html.erb` — max-w-2xl mx-auto 제거 + narrow 선언\n\n### Wide 선언 (4개, tongtok은 layout-dev가 이미 수정)\n- `app/views/stats/index.html.erb` — wide 선언 추가\n- `app/views/groups/show.html.erb` — max-w-4xl mx-auto 제거 + wide 선언\n- `app/views/groups/index.html.erb` — max-w-4xl mx-auto 제거 + wide 선언\n- `app/views/attendance_stats/show.html.erb` — max-w-4xl mx-auto 제거 + wide 선언\n- (tongtok/index.html.erb — layout-dev가 이미 content_for(:layout_width, 'wide')로 교체 완료)\n\n### 특수 페이지 점검 (5개, 수정 없음)\n- pages/privacy.html.erb — max-w-3xl 유지 ✓\n- pages/terms.html.erb — max-w-3xl 유지 ✓\n- attendances/show.html.erb — max-w-md 유지 ✓\n- group_joins/show.html.erb — max-w-lg 유지 ✓\n- tongtok/read.html.erb — max-w-lg 유지 ✓\n\n## 테스트 결과\n679 runs, 1697 assertions, 0 failures, 0 errors
-
Wwidth-dev 상태 변경: 할 일 → 리뷰
2026년 03월 04일 03:56:37
-
Wwidth-dev narrow/wide 선언 시작
2026년 03월 04일 03:55:28
상세 보기
태스크 #1 완료 확인. narrow 4개 + wide 5개 + 특수 5개 작업 시작.
-
Rrails-dev narrow/wide 선언 작업 준비 시작 - 대상 파일 사전 분석 중
2026년 03월 04일 03:53:04
상세 보기
태스크 #1 (3-tier 레이아웃 시스템 구축) 완료 대기 중. 대상 파일 사전 읽기 진행.