fix: add text color to StockViewer input for visibility

This commit is contained in:
2026-05-14 08:17:05 +02:00
parent 41fdc08a6e
commit 0fdd8432a0
+1 -1
View File
@@ -38,7 +38,7 @@ export default function StockViewer() {
value={symbol}
onChange={(e) => setSymbol(e.target.value.toUpperCase())}
placeholder="Enter stock symbol (e.g. AAPL)"
className="flex-1 border border-gray-300 rounded-lg px-4 py-2.5 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent"
className="flex-1 border border-gray-300 rounded-lg px-4 py-2.5 text-gray-900 placeholder-gray-500 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent"
onKeyDown={(e) => e.key === "Enter" && fetchIndicators()}
/>
<button