Skip to content

Commit

Permalink
Fix map being hidden by header (#121)
Browse files Browse the repository at this point in the history
You could see the issue by setting `z-index: 3000;` on `#map`, which
would cover the header.
  • Loading branch information
Eric-Arellano authored Aug 16, 2023
1 parent 68d71fd commit b341605
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,19 @@

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

html,
body {
padding: 0;
margin: 0;
height: 100vh;
width: 100%;
display: flex;
flex-direction: column;
overflow: hidden;
}

html,
body,
#map {
height: 100%;
flex: 1;
width: 100%;
}

Expand Down

0 comments on commit b341605

Please sign in to comment.