All files / app/elements/wizard-card wizard-card.component.html

100% Statements 19/19
100% Branches 2/2
100% Functions 1/1
100% Lines 19/19

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 191x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x
<div class="box">
  <div class="card card-height" style="border-radius: 12px; background-color: #FAFAFA; border: 1px solid #CBD5E0;">
    <div class="card-body">
      <div class="d-flex justify-content-start align-items-start flex-column">
        <div>
          <img [src]="cardData.logo" alt="cards-desc-images" width="32px" height="32px">
        </div>
        @if(cardData.link){
        <a [href]="[cardData.link]">
          <h6 class="my-3 text-title">{{cardData.title}}</h6>
        </a>
        }@else {
        <h6 class="my-3 text-title">{{cardData.title}}</h6>
        }
        <p style="color: #1A202C; font-size: 14px;" class="text-desc">{{cardData.desc}}</p>
      </div>
    </div>
  </div>
</div>