如何摆脱 Material DatetimePicker 时间下划线

时间:2021-07-29 13:06:34

标签: html css angular less

我正在使用 Angular Material DatetimePicker,我遇到了问题,我正在尝试删除此下划线,但找不到方法。

这里是DEMO stackblitz

enter image description here

1 个答案:

答案 0 :(得分:2)

请在此处查看答案: https://github.com/h2qutc/angular-material-components/issues/9

此 css 代码应该为您完成这项工作:

.ngx-mat-timepicker .mat-form-field-underline {
    display: none;
}

如果你想更新到最新版本,也请检查这个 repo

https://github.com/h2qutc/angular-material-components

相关问题