Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoineF4C5 committed Mar 16, 2024
2 parents 02b43b8 + 9af98ad commit 4812ba5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/components/navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
display: flex;
justify-content: space-between;
align-items: center;
height: 4vh;
height: 5em;
}

.munis-navbar .munis-navbar-item:hover,
Expand Down
2 changes: 1 addition & 1 deletion templates/map/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ <h5>${feature.properties.map_object.category}</h5>`

{{ template "components/navbar" . }}

<div style="position: absolute; width: 100vw;height: 96vh;max-width: none;"
<div class="map" style="position: absolute; width: 100vw;max-width: none;"
x-data="{mobile: mobileCheck(), showFiltresMobile: false}">

<div class="w3-container w3-center" x-cloak x-show="mobile">
Expand Down
4 changes: 4 additions & 0 deletions templates/static/mapStyle.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#helpModal, #eventModal {
z-index: 9999;
}

.map {
height: calc(100vh - 5em);
}

0 comments on commit 4812ba5

Please sign in to comment.