通过设置一个 CSS 样式覆盖 Angular Material 的默认样式,即可解决此问题。下面展示代码示例:
CSS 样式:
.mat-calendar-body-selected { background-color: #3f51b5 !important; color: #fff; border-radius: 50%; }
HTML 代码:
TS 代码:
import { Component } from '@angular/core';
@Component({ selector: 'app', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent {
}