fix(ui): 내역 추가 모달 닫기(×) 버튼이 상태바에 가려 클릭 안 되던 문제
Deploy / deploy (push) Failing after 14m18s

전체화면 entry 모달의 .close 에 env(safe-area-inset-top) 누락 → 상태바/노치 아래로 내림.
중앙 모달(확인/붙여넣기)에는 미적용(닫기가 다이얼로그 기준이라 불필요).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
sb
2026-07-04 22:42:37 +09:00
parent 16e8973532
commit 42406b4c75
+5
View File
@@ -1718,6 +1718,11 @@ button.primary {
background: transparent;
font-size: 1.5rem;
line-height: 1;
z-index: 1;
}
/* 전체화면 모달(entry)만: 닫기 버튼을 상태바/노치 아래로 — 중앙 모달엔 적용 안 함 */
.modal.entry-modal .close {
top: calc(0.5rem + env(safe-area-inset-top));
}
.modal h2 {
margin-bottom: 1rem;