mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-15 21:31:40 -07:00
* 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()
23 lines
378 B
SCSS
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;
|
|
|
|
}
|
|
|
|
|
|
|