jobsys-newbie
Version:
Enhanced component based on ant-design-vue
39 lines (33 loc) • 495 B
text/less
.strength-indicator-container {
display: grid;
grid-template-columns: repeat(4, 1fr);
margin-top: 5px;
.strength-indicator {
height: 5px;
border: 1px solid #e8e8e8;
}
&.bad {
.active {
background: #ff0000;
}
}
&.weak {
.active {
background: #ffa500;
}
}
&.medium {
.active {
background: #ffff00;
}
}
&.strong {
.active {
background: #008000;
}
}
}
.error-message {
color: red;
margin-top: 5px;
}