Go back to normal

This commit is contained in:
Alireza Adli 2023-10-19 15:40:18 -04:00
parent 962877177c
commit 769c62f9f9
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
*/ */
.main-header { .main-header {
z-index: 3000; z-index: 3000;
position: relative; position: absolute;
top: 0; top: 0;
left: 0; left: 0;
height: 76px; /* sync with map-container positioning */ height: 76px; /* sync with map-container positioning */

View File

@ -23,7 +23,7 @@ export function CityMap() {
}, []); }, []);
return ( return (
<div id="map" style={{ width: '100%', height: '100vh' }}></div> <div id="map" style={{ width: '1100px', height: '100vh' }}></div>
); );
} }