increase tooltip width in angular material

Solutions on MaxInterview for increase tooltip width in angular material by the best coders in the world

showing results for - "increase tooltip width in angular material"
Nicole
11 Sep 2020
1// Hi...this is Ayushman
2::ng-deep .my-tooltip {
3  max-width: unset !important;
4  white-space: pre-wrap;
5  font-size: 8px;
6}
Cain
22 Feb 2019
1::ng-deep .my-tooltip {
2  // white-space: pre-line;
3  // width: 1500px;
4  // width: fit-content;
5  max-width: unset !important;
6  white-space: pre-wrap;
7  font-size: 8px;
8}