33 lines
444 B
SCSS
33 lines
444 B
SCSS
:host {
|
|
display: block;
|
|
height: 100%;
|
|
|
|
::ng-deep {
|
|
.loader {
|
|
height: 100% !important;
|
|
}
|
|
|
|
.svgMap-map-wrapper {
|
|
background: transparent;
|
|
|
|
.svgMap-country {
|
|
stroke: #e5e5e5;
|
|
}
|
|
|
|
.svgMap-map-controls-wrapper {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
:host-context(.theme-dark) {
|
|
::ng-deep {
|
|
.svgMap-map-wrapper {
|
|
.svgMap-country {
|
|
stroke: #414141;
|
|
}
|
|
}
|
|
}
|
|
}
|