mirror of
https://github.com/bitwarden/browser
synced 2025-01-20 08:22:13 +01:00
26 lines
988 B
HTML
26 lines
988 B
HTML
<a
|
|
class="tw-border tw-border-solid tw-border-secondary-300 tw-rounded tw-overflow-hidden tw-h-full tw-w-72 tw-block !tw-text-main hover:tw-no-underline hover:tw-scale-105 tw-transition-all focus:tw-outline-none focus:tw-ring focus:tw-ring-offset-2 focus:tw-ring-primary-700"
|
|
[routerLink]="route"
|
|
(click)="click()"
|
|
>
|
|
<div class="tw-relative">
|
|
<div
|
|
class="tw-text-center tw-h-28 tw-flex tw-bg-background-alt2 tw-text-primary-300"
|
|
[ngClass]="{ 'tw-grayscale': premium }"
|
|
>
|
|
<div class="tw-m-auto" [innerHtml]="icon"></div>
|
|
</div>
|
|
<div class="tw-p-5" [ngClass]="{ 'tw-grayscale': report.requiresPremium }">
|
|
<h3 class="tw-text-xl tw-font-bold tw-mb-4">{{ report.title | i18n }}</h3>
|
|
<p class="tw-mb-0">{{ report.description | i18n }}</p>
|
|
</div>
|
|
<span
|
|
bitBadge
|
|
badgeType="success"
|
|
class="tw-absolute tw-left-2 tw-top-2 tw-leading-none"
|
|
*ngIf="premium"
|
|
>{{ "premium" | i18n }}</span
|
|
>
|
|
</div>
|
|
</a>
|