1
0
mirror of https://github.com/bitwarden/web synced 2025-12-11 13:53:17 +00:00

adjust password strength meter

This commit is contained in:
Kyle Spearrin
2018-11-13 09:10:44 -05:00
parent 912e1cf89f
commit 4231ed74ba
2 changed files with 9 additions and 5 deletions

View File

@@ -28,8 +28,8 @@ export class PasswordStrengthComponent implements OnChanges {
this.text = this.i18nService.t('strong');
break;
case 3:
this.color = 'bg-warning';
this.text = this.i18nService.t('ok');
this.color = 'bg-primary';
this.text = this.i18nService.t('good');
break;
case 2:
this.color = 'bg-warning';