chore: update tooltip styles

* max-width for tooltip label
* remove ellipsis
* use normal white-space wrapping
This commit is contained in:
Arjun Choudhary 2022-11-24 15:53:45 +05:30
parent a04dd7f433
commit e3710f0e16

View File

@ -176,11 +176,12 @@
.tooltip-label {
margin-top: 4px;
font-size: 11px;
line-height: 1.25;
max-width: 150px;
white-space: normal;
max-width: 100px;
color: var(--charts-tooltip-label);
color: var(--fr-tooltip-label);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.tooltip-value {
@ -188,4 +189,4 @@
}
}
}
}
}