diff --git a/src/components/charts/chartController.vue b/src/components/charts/chartController.vue index c106d3f1..8571c9be 100644 --- a/src/components/charts/chartController.vue +++ b/src/components/charts/chartController.vue @@ -167,7 +167,7 @@ export default { if ( this.$route.path.startsWith( '/map' ) ) { return 'scaled-iframe' } else { - return '' + return 'building-iframe' } }, promise: { @@ -353,4 +353,14 @@ export default { transform: scale(0.4); transform-origin: top left; } +.building-iframe { + height: 600px; + width: 1000px; +} +@media only screen and (max-width: 600px) { + .building-iframe { + height: 600px; + width: 600px; + } +}