aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/src/app/todo-item/todo-item.component.html
blob: 6f76e73b778745fd0e9d6972716894f5b44b7420 (plain)
1
2
3
4
5
6
7
8
9
<mat-card class="mat-elevation-z2 item-card">
  <span class="item-color-block" [class.color-block-closed]="item.isClosed" [class.color-block-open]="!item.isClosed"></span>
  <div class="mat-h3 item-body-box">
    <span class="item-title">{{ item.number }}. {{ item.title }}</span>
    <a mat-icon-button class="item-detail-button" [href]="item.detailUrl">
      <mat-icon>arrow_forward</mat-icon>
    </a>
  </div>
</mat-card>