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

@ -28,7 +28,14 @@ body {
margin-top: 330px;
}
.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;
height: 50% !important;
}
}