j40-cejst-2/client/src/components/territoryFocusControl.module.scss
Vim 9f0ca1c17d
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()
2022-06-03 09:35:28 -07:00

23 lines
378 B
SCSS

@use '../styles/design-system.scss' as *;
@mixin baseTerritoryFocus {
position: absolute;
left: .75em;
z-index: 1;
}
.territoryFocusContainer {
@include baseTerritoryFocus;
// styles for mobile-lg (480px) and greater widths:
@include at-media('mobile-lg') {
top: units(card-lg);
};
// styles for mobile-lg (480px) and smaller widths:
top: 100px;
}