1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

[CL-581] Update svgs to new designs and make responsive (#16219)

This commit is contained in:
Vicki League
2025-09-10 17:23:53 -04:00
committed by GitHub
parent c160b421fc
commit 926f587ea2
109 changed files with 798 additions and 1391 deletions

View File

@@ -1,7 +1,4 @@
<div class="tw-flex tw-flex-col tw-h-full tw-justify-center">
<div class="tw-text-center">
<bit-icon [icon]="noCredentialsIcon" aria-hidden="true"></bit-icon>
<h2 bitTypography="h4" class="tw-mt-3">{{ "nothingToShow" | i18n }}</h2>
<div>{{ "nothingGeneratedRecently" | i18n }}</div>
</div>
</div>
<bit-no-items [icon]="noCredentialsIcon">
<ng-container slot="title">{{ "nothingToShow" | i18n }}</ng-container>
<ng-container slot="description">{{ "nothingGeneratedRecently" | i18n }}</ng-container>
</bit-no-items>

View File

@@ -2,12 +2,12 @@ import { Component } from "@angular/core";
import { JslibModule } from "@bitwarden/angular/jslib.module";
import { NoCredentialsIcon } from "@bitwarden/assets/svg";
import { IconModule, TypographyModule } from "@bitwarden/components";
import { NoItemsModule } from "@bitwarden/components";
@Component({
selector: "bit-empty-credential-history",
templateUrl: "empty-credential-history.component.html",
imports: [JslibModule, IconModule, TypographyModule],
imports: [JslibModule, NoItemsModule],
})
export class EmptyCredentialHistoryComponent {
noCredentialsIcon = NoCredentialsIcon;