fix: add text color to input fields for visibility
This commit is contained in:
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user