#1865 Making title color woitk when htmnlLabels are used (separated css rules for cluster text and span)

This commit is contained in:
Marc Faber 2021-01-23 22:36:20 +01:00
parent 0c724d1a88
commit 03edd00014
1 changed files with 4 additions and 1 deletions

View File

@ -55,8 +55,11 @@ const getStyles = options =>
stroke-width: 1px;
}
.cluster text,span {
.cluster text {
fill: ${options.titleColor};
}
.cluster span {
color: ${options.titleColor};
}