부모 티켓
2개 티켓

백로그

0
티켓 없음

할 일

0
티켓 없음

진행 중

0
티켓 없음

리뷰

0
티켓 없음

완료 (전체)

2
높음 5dd2b4da
서브 티켓 [레이아웃] 전체 폭 개선 - Coordination

[구현] 3-tier 레이아웃 시스템 + 기본 폭 뷰 정리

## 작업 1: application.html.erb 3-tier 시스템 구축 `app/views/layouts/application.html.erb`에서: - 기존 `content_for?(:wide_layout) ? 'max-w-4xl' : 'max-w-2xl'` 를 3-tier로 교체: ```erb <% width_map = { 'narrow' => 'max-w-2xl', 'wide' => 'max-w-6xl' } container_width = width_map[content_for(:layout_width).presence] || 'max-w-4xl' %> ``` - div에 `<%= container_width %>` 적용 ## 작업 2: 기본 폭 뷰 정리 (중복 max-w-2xl 제거) 아래 11개 뷰에서 자체 `max-w-2xl mx-auto` 와 중복 `px-4 py-6` 제거 (레이아웃 기본 max-w-4xl 사용): - qt/sessions/show.html.erb - qt/sessions/edit.html.erb - qt/sessions/members.html.erb - qt/sessions/rankings.html.erb - qt/sessions/shared_meditations.html.erb - qt/themes/show.html.erb - prayer_partners/search.html.erb - prayer_partners/index.html.erb - bible_highlights/index.html.erb - group_qt_sessions/new.html.erb - pages/home.html.erb (내부 max-w-2xl 섹션) 주의: 내부 spacing (space-y-6 등)은 유지, max-w와 mx-auto와 중복 px/py만 제거

L
layout-dev
2 days
높음 244d8079
서브 티켓 [레이아웃] 전체 폭 개선 - Coordination

[구현] narrow/wide 페이지 선언 + 특수 페이지 점검

## 작업 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은 유지

W
width-dev
2 days