1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-23 03:22:50 +02: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,
SectionHeaderComponent,
ToastService,
TypographyModule,
} from "@bitwarden/components";
import { PasswordRepromptService } from "@bitwarden/vault";
@ -30,6 +31,7 @@ import { PasswordRepromptService } from "@bitwarden/vault";
SectionHeaderComponent,
MenuModule,
IconButtonModule,
TypographyModule,
],
})
export class TrashListItemsContainerComponent {

View File

@ -5,7 +5,11 @@
</ng-container>
</popup-header>
<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 }}
</bit-callout>