style(cupang): 달 이동 화살표를 짧고 굵은 SVG 로 교체

글꼴 글리프는 두께 조절이 안 돼 stroke-width 5.5 SVG 로 대체

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-02 14:34:33 +09:00
parent e259e7d370
commit ba2478d461
6 changed files with 22 additions and 9 deletions
+7 -2
View File
@@ -1042,12 +1042,17 @@ body.cpg-dragging { cursor: grabbing; user-select: none; }
}
.cpg-mcal-navbtn {
display: inline-flex; align-items: center; justify-content: center;
width: 48px; height: 36px;
width: 44px; height: 36px;
border: 0; background: none; border-radius: 8px;
font-size: 32px; font-weight: 700; line-height: 1;
color: var(--color-deep-black); text-decoration: none;
transition: background .12s, transform .12s;
}
/* 짧고 굵은 화살표 — 글꼴 글리프 대신 SVG 로 두께를 직접 준다 */
.cpg-mcal-arrow {
width: 30px; height: 26px;
fill: none; stroke: currentColor;
stroke-width: 5.5; stroke-linecap: round; stroke-linejoin: round;
}
.cpg-mcal-navbtn:hover { background: var(--color-ghost-gray); }
.cpg-mcal-navbtn:active { transform: scale(.94); }
.cpg-mcal-range {