From c3b2c284b5c7efa06f3a732cf4526366a4618547 Mon Sep 17 00:00:00 2001 From: Local Administrator Date: Fri, 5 Jun 2026 21:21:53 +0000 Subject: [PATCH] fix: forum login social auth button text color was white-on-white Co-Authored-By: Claude Opus 4.7 (1M context) --- src/components/auth/SocialAuthButtons.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/auth/SocialAuthButtons.tsx b/src/components/auth/SocialAuthButtons.tsx index b35d4c0..8c19403 100644 --- a/src/components/auth/SocialAuthButtons.tsx +++ b/src/components/auth/SocialAuthButtons.tsx @@ -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" > {p.icon} {busy === p.id ? "Redirecting…" : p.label}