我需要将mat-option的宽度设置为与mat-select相同的值。 问题在于cdk覆盖窗格添加了带有转换的样式:translateX(-16px)。
我可以通过SCSS删除它,但是我需要知道是否还有其他选择可以做到这一点。
我尝试覆盖SELECT_PANEL_INDENT_PADDING_X,但没有成功
<mat-form-field [class.mat-form-field-invalid]="hasError">
<mat-select
[placeholder]="placeholder"
[formControlName]="inputId"
disableOptionCentering
panelClass="join-panel-alligment"
>
<mat-option
*ngFor="let item of question.answerPossibilityList"
[id]="question.id + '_so_' + item.id"
[value]="item"
>
{{ item.label }}
</mat-option>
</mat-select>
</mat-form-field>