ng-matero / extensions

Angular Material Extensions Library.
https://ng-matero.github.io/extensions/
MIT License
393 stars 48 forks source link

How to wrap long text in mtx-option? #202

Closed casingwire closed 1 year ago

casingwire commented 1 year ago

Hello, kindly help me figure out how to adjust the style to wrap a long text in an option value. It works with native mat-select using the css:

.mat-select-panel mat-option.mat-option { height: unset; margin: 10px; }

.mat-option-text.mat-option-text { white-space: normal; }

I will very much appreciate it.

nzbin commented 1 year ago
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option {
  white-space: normal !important;
}