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 19 20 21 | 1x 1x 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
[innerHTML]="sanitizer.bypassSecurityTrustHtml(cardData.logo)"
[ngStyle]="{ color: branding?.primary_text_color || '#1BA58B' }"
></div>
@if (cardData.link) {
<a [href]="cardData.link" target="_blank">
<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>
|