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 { .tooltip-label {
margin-top: 4px; margin-top: 4px;
font-size: 11px; font-size: 11px;
line-height: 1.25; max-width: 100px;
max-width: 150px;
white-space: normal;
color: var(--charts-tooltip-label); color: var(--fr-tooltip-label);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
} }
.tooltip-value { .tooltip-value {