- 본문 폭: --page-max(760px) 변수 + .layout-body>* 전역 규칙으로 일관화 (각 뷰가 제각각 두던 root max-width 대체) - 화면 내 '뒤로가기/가계부로/목록' 버튼 제거(하단 내비 뒤로가기는 유지) 대상: 계좌/분류/예산/고정지출/태그/기본분류/게시글상세/계정정보 - BoardDetail actions 우측 정렬, AccountInfo 미사용 goBack 제거 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -34,6 +34,8 @@
|
||||
--color-text: var(--vt-c-text-light-1);
|
||||
|
||||
--section-gap: 160px;
|
||||
/* 모든 화면 본문 공통 폭 (화면별 제각각이던 max-width 를 일관되게) */
|
||||
--page-max: 760px;
|
||||
}
|
||||
|
||||
/* 다크 변수 묶음 — 명시적 다크(data-theme=dark)와 시스템 다크에서 공통 사용 */
|
||||
|
||||
@@ -4,6 +4,14 @@
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
/* 모든 화면 본문 폭 통일 — 각 뷰가 제각각 두던 root max-width 를 한 곳에서 일관되게.
|
||||
(본문 직계 자식 = 각 화면 루트 컨테이너) scoped 스타일을 덮기 위해 !important 사용. */
|
||||
.layout-body > * {
|
||||
max-width: var(--page-max) !important;
|
||||
margin-left: auto !important;
|
||||
margin-right: auto !important;
|
||||
}
|
||||
|
||||
/* 폼 요소 폰트 상속(표준 리셋) — 네이티브 input/select/textarea 가 서로 폰트·높이 달라
|
||||
보이던 이질감 해소. (개별 화면 scoped 스타일이 더 구체적이면 그쪽이 우선) */
|
||||
input,
|
||||
|
||||
Reference in New Issue
Block a user