ghostfolio/apps/client/src/app/components/world-map-chart/world-map-chart.component.scss
Thomas Kaul 9246a73f41
Feature/refactor dark theme css selector (#3662)
* Refactor dark theme CSS selector

* Update changelog
2024-08-11 15:43:02 +02:00

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;
}
}
}
}