Is there a way to truncate the title of a mat card when it overflows? I tried using the following CSS:
overflow:hidden
text-overflow:ellipsis
white-space: nowrap
However, the style is being overridden by the default mat-card style. I attempted to use mat-card-header ::ng-deep
, but I believe ng-deep is now deprecated. Does anyone have a more effective approach for achieving this?