Skip to content

Commit

Permalink
Adjust the responsive width to overlap geocoder behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
mddilley committed Jan 24, 2024
1 parent 60b7b85 commit 92c3e05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions atd-vzv/src/views/map/InfoBox/infoBoxStyles.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ export const StyledPoylgonInfo = styled.div`
max-width: ${maxInfoBoxWidth}px;
z-index: 9 !important;
pointer-events: none;
// Combining the height of the geocoder box and 10px Mapbox spacing here
/* Combine the height of the geocoder box and 10px Mapbox spacing */
top: 46px;
// Combining the mobile height of the geocoder box and 10px Mapbox spacing here
@media (max-width: 640px) {
/* Combine the mobile height of the geocoder box and 10px Mapbox spacing */
@media (max-width: 639px) {
top: 60px;
}
`;
Expand Down

0 comments on commit 92c3e05

Please sign in to comment.