mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 01:03:35 +00:00
* moved password strength to libs * refactored password strength component * made changes on desktop and browser to reuse component * resolved suggestions from PR review * shared module restructure * shared module restructure
15 lines
323 B
HTML
15 lines
323 B
HTML
<div class="progress">
|
|
<div
|
|
class="progress-bar {{ color }}"
|
|
role="progressbar"
|
|
[ngStyle]="{ width: scoreWidth + '%' }"
|
|
attr.aria-valuenow="{{ scoreWidth }}"
|
|
aria-valuemin="0"
|
|
aria-valuemax="100"
|
|
>
|
|
<ng-container *ngIf="showText && text">
|
|
{{ text }}
|
|
</ng-container>
|
|
</div>
|
|
</div>
|