Home > Net >  Override mat-list-text
Override mat-list-text

Time:10-05

I have a problem to access the mat-list-text class from material List.

I'm trying to override this class in order to change overflow from hidden to visible.

enter image description here

But I can't do it.

CodePudding user response:

Try this:

.mat-list-text {
  overflow: visible !important;
}

If this does not work, go with ::ng-deep

  • Related