From cbe0e8e01d283dbd1011f04fad42ba4282f96f07 Mon Sep 17 00:00:00 2001 From: Haewon Kam Date: Thu, 18 Jun 2026 09:56:27 +0900 Subject: [PATCH] Right-size submit CTA + match input to card shape MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Submit button height/text now match the bottom "다른 경기 투표하기" CTA (py-3, text-15) — was oversized (py-5, text-19) - Keep rounded-2xl so roundness stays consistent with the green card - Email input matched to same rounded-2xl shape and height Co-Authored-By: Claude Opus 4.8 --- components/Arena.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/Arena.tsx b/components/Arena.tsx index 469ecfb..9c67895 100644 --- a/components/Arena.tsx +++ b/components/Arena.tsx @@ -282,7 +282,7 @@ export default function Arena({ value={email} onChange={(e) => setEmail(e.target.value)} placeholder={t.emailPh} - className="w-full rounded-xl border border-[var(--share)] bg-[#0f1217] px-4 py-3.5 text-[16px] text-white shadow-[0_0_0_2px_rgba(166,94,255,0.12)] outline-none focus:shadow-[0_0_0_2px_rgba(166,94,255,0.3)]" + className="w-full rounded-2xl border border-[var(--share)] bg-[#0f1217] px-4 py-3 text-[16px] text-white shadow-[0_0_0_2px_rgba(166,94,255,0.12)] outline-none focus:shadow-[0_0_0_2px_rgba(166,94,255,0.3)]" />