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:
markosbenitez
2026-06-27 15:25:16 -03:00
parent b3f039fbd5
commit ca3af1a750
4 changed files with 31 additions and 16 deletions

View File

@@ -151,6 +151,7 @@ export function CiudadSelectField({
aria-selected={i === activeIdx}
className={`barrio-autocomplete-item${i === activeIdx ? ' barrio-autocomplete-item--active' : ''}`}
onMouseDown={() => select(ciudad)}
onTouchEnd={(e) => { e.preventDefault(); select(ciudad) }}
>
{ciudad}
</li>