Closed ronleeross closed 6 years ago
The css file sets tooltip to min-width: 20em;
min-width: 20em;
I need it to be min-width: 30em;
min-width: 30em;
But the tooltips cannot handle this change and no longer points at all/certain elements on the right side of the screen.
What happens is the tooltip gets set to the top left of the screen instead.
When I change back to 20em, everything works as intended.
The solution was to overwrite .tooltip class with: max-width: 30em !important;
max-width: 30em !important;
The css file sets tooltip to
min-width: 20em;
I need it to be
min-width: 30em;
But the tooltips cannot handle this change and no longer points at all/certain elements on the right side of the screen.
What happens is the tooltip gets set to the top left of the screen instead.
When I change back to 20em, everything works as intended.