1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-10 05:13:41 +00:00

Icon fixes for callouts and verify mp (#640)

This commit is contained in:
Oscar Hinton
2022-01-27 17:40:58 +01:00
committed by GitHub
parent 5249e55522
commit 6b4ed5fcce
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@
[attr.role]="useAlertRole ? 'alert' : null" [attr.role]="useAlertRole ? 'alert' : null"
> >
<h3 class="callout-heading" *ngIf="title"> <h3 class="callout-heading" *ngIf="title">
<i class="{{ icon }}" *ngIf="icon" aria-hidden="true"></i> <i class="bwi {{ icon }}" *ngIf="icon" aria-hidden="true"></i>
{{ title }} {{ title }}
</h3> </h3>
<div class="enforced-policy-options" *ngIf="enforcedPolicyOptions"> <div class="enforced-policy-options" *ngIf="enforcedPolicyOptions">

View File

@@ -24,7 +24,7 @@
{{ "sendCode" | i18n }} {{ "sendCode" | i18n }}
</button> </button>
<span class="ml-2 text-success" role="alert" @sent *ngIf="sentCode"> <span class="ml-2 text-success" role="alert" @sent *ngIf="sentCode">
<i class="bwi-check-circle" aria-hidden="true"></i> <i class="bwi bwi-check-circle" aria-hidden="true"></i>
{{ "codeSent" | i18n }} {{ "codeSent" | i18n }}
</span> </span>
</div> </div>