<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Fixes when exiting fullscreen the map becoming too vertical */
.map-gis__frame {
   width: 100%;
   height: 25em;
}

/* Fixes graphics becoming stretched */
.map-gis__frame canvas.ol-unselectable {
   width: unset !important;
}

/* Prevents the map from taking over the whole screen */
@media (max-width: 961px) {
   .map-gis__frame {
      width: 90%;
      border-right: 1em solid #f2f2f2;
      height: 20em;
   }
}</pre></body></html>