From 3105c995818a2ae56644b757b721aff21ab729d2 Mon Sep 17 00:00:00 2001 From: "68893236+KINDNICK@users.noreply.github.com" <68893236+KINDNICK@users.noreply.github.com> Date: Tue, 3 Mar 2026 21:08:08 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20CTA=20=EC=A0=95=EB=B3=B4=20=EC=B9=B4?= =?UTF-8?q?=EB=93=9C=20=EC=A4=91=EC=95=99=20=EC=A0=95=EB=A0=AC=20(?= =?UTF-8?q?=EC=95=84=EC=9D=B4=EC=BD=98=20=EC=83=81=EB=8B=A8,=20=ED=85=8D?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=20=EC=A4=91=EC=95=99)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 가로 flex → 세로 flex 변경으로 아이콘/라벨/값을 중앙 정렬 Co-Authored-By: Claude Opus 4.6 --- css/main.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/css/main.css b/css/main.css index 55240f4..40d7bba 100644 --- a/css/main.css +++ b/css/main.css @@ -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; }