Skip to content

Instantly share code, notes, and snippets.

@ovpv
Created September 2, 2019 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ovpv/acb69ad925cf3ab153d36ee77cc8771a to your computer and use it in GitHub Desktop.
Save ovpv/acb69ad925cf3ab153d36ee77cc8771a to your computer and use it in GitHub Desktop.
css classes for showing password strength in meter component
.progress{
height: 10px;
width: 0%;
background-color: transparent;
}
.progress.low{
background-color: red;
color:red;
width: 10%;
}
.progress.medium{
background-color: orange;
color: orange;
width: 50%;
}
.progress.high{
color: green;
background-color: green;
width:100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment