1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-08 20:50:28 +00:00
Files
browser/libs/components/src/skeleton/skeleton-text.component.html

12 lines
310 B
HTML

<div class="tw-w-full tw-flex tw-flex-col tw-gap-2">
@for (line of this.linesArray(); track $index; let last = $last, first = $first) {
<bit-skeleton
class="tw-h-3"
[ngClass]="{
'tw-w-full': first || !last,
'tw-w-1/3': !first && last,
}"
></bit-skeleton>
}
</div>