Fix: CTA 정보 카드 중앙 정렬 (아이콘 상단, 텍스트 중앙)

가로 flex → 세로 flex 변경으로 아이콘/라벨/값을 중앙 정렬

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
68893236+KINDNICK@users.noreply.github.com 2026-03-03 21:08:08 +09:00
parent 0a62c10774
commit 3105c99581

View File

@ -1048,14 +1048,17 @@
.info-quick-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
padding: 1.1rem 1.5rem;
justify-content: center;
gap: 0.6rem;
padding: 1.3rem 1.5rem;
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 16px;
backdrop-filter: blur(10px);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
text-align: center;
}
.info-quick-item:hover {
@ -1080,6 +1083,7 @@
.info-quick-item div {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.15rem;
min-width: 0;
}