fix: forum login social auth button text color was white-on-white

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-05 21:21:53 +00:00
parent 36dc2577bd
commit c3b2c284b5

View File

@@ -72,7 +72,7 @@ export default function SocialAuthButtons({ next = "/forum" }: { next?: string }
type="button"
disabled={!!busy}
onClick={() => oauth(p.id)}
className="bg-[#F8FAFC] border border-[#DCE6F2] hover:border-[#1D4ED8] text-white text-xs font-semibold py-2 px-3 rounded-lg flex items-center justify-center gap-2 disabled:opacity-50 transition-colors"
className="bg-[#F8FAFC] border border-[#DCE6F2] hover:border-[#1D4ED8] text-[#0F172A] text-xs font-semibold py-2 px-3 rounded-lg flex items-center justify-center gap-2 disabled:opacity-50 transition-colors"
>
<span className="text-base leading-none">{p.icon}</span>
<span>{busy === p.id ? "Redirecting…" : p.label}</span>