change font size of angular material tooltip

Solutions on MaxInterview for change font size of angular material tooltip by the best coders in the world

showing results for - "change font size of angular material tooltip"
Malena
29 May 2016
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}
Henri
19 Jan 2020
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}