added progress bar for competencies

This commit is contained in:
2026-01-10 20:57:54 +00:00
parent 755d6705fa
commit 903eb88fdc
7 changed files with 92 additions and 43 deletions

View File

@@ -181,3 +181,28 @@
cursor: default;
background-image: none;
}
#progress-wrapper {
margin-bottom: 16px;
}
#progress-label {
font-size: 14px;
margin-bottom: 6px;
text-align: right;
color: #555;
}
#progress-bar {
width: 100%;
height: 10px;
background: #e5e7eb;
border-radius: 999px;
overflow: hidden;
}
#progress-fill {
height: 100%;
width: 0%;
background: #22c55e;
transition: width 0.3s ease;
}