bet slider: decrease step size

This commit is contained in:
mantikoros 2022-09-06 11:53:09 -05:00
parent a038ef91eb
commit c59de1be2e

View File

@ -138,11 +138,11 @@ export function BuyAmountInput(props: {
<input
type="range"
min="0"
max="250"
max="200"
value={amount ?? 0}
onChange={(e) => onAmountChange(parseInt(e.target.value))}
className="range range-lg z-40 mb-2 xl:hidden"
step="25"
step="5"
/>
)}
</>