1. 程式人生 > >angular6 覆蓋其他元件的樣式

angular6 覆蓋其他元件的樣式

@Component({
  selector: 'app-schema-number',
  templateUrl: './number.component.html',
  styles:[`
    :host /deep/ .ant-input-number{
      width:220px;
    }
  `]
})