Fix after moving svg into container div

This commit is contained in:
Catalin Mititiuc 2024-03-31 17:05:12 -07:00
parent 69b1d8252e
commit 64aeda4b55

View File

@ -1,6 +1,5 @@
body { body {
margin: 0; margin: 0;
max-height: 100vh;
display: flex; display: flex;
overflow: hidden; overflow: hidden;
} }
@ -8,13 +7,13 @@ body {
#map-container { #map-container {
flex-basis: 100%; flex-basis: 100%;
position: relative; position: relative;
max-height: 100vh;
} }
svg { svg {
background-color: darkgray; background-color: darkgray;
/* flex-basis: 100%; */ width: 100%;
/* max-height: 50vh; */ height: 100%;
/* max-height: 100vw; */
} }
svg text { svg text {