Add address to search placeholder and add "at or above" to category copy for low income (#1665)

* Add address to search placeholder text

* Adds "at or above" to category copy

* Updates map search placeholder text

- Update es and en.json files
- adds mobile search placeholder text
- udpates desktop search placeholder text

* Update logic to determine mobile for search text

* Update search error message

- update to Spanish text as well

* Adjust spacing between search and territory btns

* Modify mobile detection logic

- remove cypress tests for faster deploys

* Add placeholder text to state variable

- wrap state variable in useEffect()
This commit is contained in:
Vim 2022-06-03 12:35:28 -04:00 committed by GitHub
commit 9f0ca1c17d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 69 additions and 40 deletions

View file

@ -7,14 +7,15 @@
}
.territoryFocusContainer {
// styles for mobile-lg (480px) and greater widths
@include baseTerritoryFocus;
// styles for mobile-lg (480px) and greater widths:
@include at-media('mobile-lg') {
@include baseTerritoryFocus;
top: units(card-lg);
};
@include baseTerritoryFocus;
top: units(9);
// styles for mobile-lg (480px) and smaller widths:
top: 100px;
}