From 988368326cf039c44ea2e9c14410db0f64d1babb Mon Sep 17 00:00:00 2001 From: Henry Winkel Date: Thu, 14 May 2026 08:15:17 +0200 Subject: [PATCH] fix: add text color to input fields for visibility --- app/routes/analyze.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/routes/analyze.tsx b/app/routes/analyze.tsx index b173ca9..14b5151 100644 --- a/app/routes/analyze.tsx +++ b/app/routes/analyze.tsx @@ -92,7 +92,7 @@ export default function Analyze() { value={state.ticker} onChange={(e) => setState((s) => ({ ...s, ticker: e.target.value.toUpperCase() }))} placeholder="AAPL" - className="border border-gray-300 rounded-lg px-4 py-2 focus:ring-2 focus:ring-blue-500" + className="border border-gray-300 rounded-lg px-4 py-2 focus:ring-2 focus:ring-blue-500 text-gray-900" required /> @@ -102,7 +102,7 @@ export default function Analyze() { type="date" value={state.date} onChange={(e) => setState((s) => ({ ...s, date: e.target.value }))} - className="border border-gray-300 rounded-lg px-4 py-2 focus:ring-2 focus:ring-blue-500" + className="border border-gray-300 rounded-lg px-4 py-2 focus:ring-2 focus:ring-blue-500 text-gray-900" />