LoginSignup
2
1

More than 5 years have passed since last update.

MatDatepicker で土日に色をつけるスタイル設定

Posted at
styles.css
/* Sunday */
mat-month-view tr td.mat-calendar-body-cell:first-child div {
  color: red;
}
/* Saturday */
/* 通常時 */
mat-month-view tr td.mat-calendar-body-cell:nth-child(7) div {
  color: blue;
}
/* 月表示が同じ行にあるとき */
mat-month-view tr td.mat-calendar-body-label ~ td:last-child div {
  color: blue;
}
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1