fix(cupang): 달력 칸이 겹치던 문제 — 칸에 box-sizing: border-box
전역 border-box 가 없어 height:100% + padding/border 가 고정 행 높이를 넘어 아래 주와 겹쳤다. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
@@ -1125,6 +1125,9 @@ body.cpg-dragging { cursor: grabbing; user-select: none; }
|
||||
.cpg-mcal-cell {
|
||||
position: relative;
|
||||
display: flex; flex-direction: column; align-items: center; gap: 4px;
|
||||
/* 이 프로젝트엔 전역 border-box 가 없다. height:100% + padding 이 행 높이를
|
||||
넘어 칸이 겹치던 문제를 막으려면 여기서 box-sizing 을 지정해야 한다. */
|
||||
box-sizing: border-box;
|
||||
height: 100%; min-height: 0; min-width: 0; padding: 6px 4px 7px;
|
||||
justify-content: flex-start;
|
||||
border: 1px solid var(--color-subtle-ash);
|
||||
|
||||
Reference in New Issue
Block a user