1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-11 10:10:25 +01:00

fixed typography issues (#10886)

This commit is contained in:
SmithThe4th 2024-09-04 16:14:58 -04:00 committed by GitHub
parent b264a3f442
commit 55ffe9913d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View File

@ -15,6 +15,7 @@ import {
SectionComponent, SectionComponent,
SectionHeaderComponent, SectionHeaderComponent,
ToastService, ToastService,
TypographyModule,
} from "@bitwarden/components"; } from "@bitwarden/components";
import { PasswordRepromptService } from "@bitwarden/vault"; import { PasswordRepromptService } from "@bitwarden/vault";
@ -30,6 +31,7 @@ import { PasswordRepromptService } from "@bitwarden/vault";
SectionHeaderComponent, SectionHeaderComponent,
MenuModule, MenuModule,
IconButtonModule, IconButtonModule,
TypographyModule,
], ],
}) })
export class TrashListItemsContainerComponent { export class TrashListItemsContainerComponent {

View File

@ -5,7 +5,11 @@
</ng-container> </ng-container>
</popup-header> </popup-header>
<ng-container *ngIf="deletedCiphers$ | async as deletedItems"> <ng-container *ngIf="deletedCiphers$ | async as deletedItems">
<bit-callout *ngIf="deletedItems.length" type="warning" title="{{ 'warning' | i18n }}"> <bit-callout
*ngIf="deletedItems.length"
type="warning"
title="{{ 'warning' | i18n | titlecase }}"
>
{{ "trashWarning" | i18n }} {{ "trashWarning" | i18n }}
</bit-callout> </bit-callout>