fix: add text color to input fields for visibility

This commit is contained in:
2026-05-14 08:15:17 +02:00
parent 944a7280c9
commit 988368326c
+2 -2
View File
@@ -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
/>
</div>
@@ -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"
/>
</div>
<div className="flex items-end">