📌  相关文章
📜  更改 mat-select 大小 - 无论代码示例

📅  最后修改于: 2022-03-11 14:58:38.778000             🧑  作者: Mango

代码示例1
@Component({
  selector: 'app-new-figures-machine',
  templateUrl: './new-figures-machine.component.html',
  styleUrls: ['./new-figures-machine.component.css'],
  //add this to enable change style
  encapsulation: ViewEncapsulation.None,
})

.mat-select-panel
{
    min-width: calc(100% + 17px) !important;
}