style: update inputs per design guidelines
This commit is contained in:
@@ -92,9 +92,15 @@ 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 text-gray-900"
|
||||
className="border border-gray-300 rounded-lg px-4 py-2.5 focus:ring-2 focus:ring-blue-500 text-gray-900 placeholder-gray-500"
|
||||
required
|
||||
/>
|
||||
<input
|
||||
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.5 focus:ring-2 focus:ring-blue-500 text-gray-900"
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<label className="block text-sm font-medium text-gray-700 mb-1">Date</label>
|
||||
|
||||
Reference in New Issue
Block a user