fix(quality): contraste teal, submit red, bottombar mobile, autocomplete touch
P1: color de texto teal -> #494F4F en 5 clases del wizard (WCAG AA). P2: try/catch en handleSubmit - error de red muestra estado error del wizard. P3: flex-wrap + column-reverse en bottombar <=480px. P4: onTouchEnd fallback en autocomplete barrio y ciudad.
This commit is contained in:
@@ -147,6 +147,7 @@ export function BarrioAutocompleteField({
|
||||
aria-selected={i === activeIdx}
|
||||
className={`barrio-autocomplete-item${i === activeIdx ? ' barrio-autocomplete-item--active' : ''}`}
|
||||
onMouseDown={() => select(barrio)}
|
||||
onTouchEnd={(e) => { e.preventDefault(); select(barrio) }}
|
||||
>
|
||||
{barrio}
|
||||
</li>
|
||||
|
||||
Reference in New Issue
Block a user