When a tooltip is forced to wrap its content, it is no longer positioned correctly in vertical space. (not moved upwards)

_Sidenote: This causes a bug with the hover effect in cases with little space available._
I solved that problem for now, by using this:
.some-container .tooltip .tooltip-inner {
width: 7em;
white-space: normal;
}
From https://github.com/valor-software/ng2-bootstrap/issues/808
EDIT:
Actually to avoid using the general .css file I found out I could use this in styles of the component that is using the tooltips:
:host /deep/ .tooltip .tooltip-inner {
max-width: none;
white-space: nowrap;
}
@PEsteves8 thank you! :D
Should be fixed
Most helpful comment
I solved that problem for now, by using this:
.some-container .tooltip .tooltip-inner {
width: 7em;
white-space: normal;
}
From https://github.com/valor-software/ng2-bootstrap/issues/808
EDIT:
Actually to avoid using the general .css file I found out I could use this in styles of the component that is using the tooltips:
:host /deep/ .tooltip .tooltip-inner {
max-width: none;
white-space: nowrap;
}