fixed map sizing

This commit is contained in:
Al Duncanson 2018-10-27 17:14:16 -04:00
parent 7736f3ff33
commit 5366b67a98
1 changed files with 9 additions and 2 deletions

View File

@ -29,6 +29,13 @@ body {
} }
.sighting-detail-google-map-container > div { .sighting-detail-google-map-container > div {
width: 100% !important;
height: 30% !important;
}
@media (min-width: 960px) {
.sighting-detail-google-map-container > div {
width: calc(100% - 50% - 120px) !important; width: calc(100% - 50% - 120px) !important;
height: 50% !important; height: 50% !important;
}
} }