24 lines
398 B
SCSS
24 lines
398 B
SCSS
@import "00-config";
|
|
/* ----------------------------- */
|
|
/* ==gmaps support */
|
|
/* ----------------------------- */
|
|
|
|
/**
|
|
* Google Maps fixes
|
|
* Only output when `$enable-gmaps` is true
|
|
*/
|
|
@if $enable-gmaps == true {
|
|
.gm-style img {
|
|
height: 100%;
|
|
}
|
|
|
|
:not(.gm-style) img {
|
|
height: auto;
|
|
}
|
|
|
|
.gm-style img,
|
|
.gmnoscreen img,
|
|
.gmnoprint img {
|
|
max-width: none !important;
|
|
}
|
|
}
|