Remove text percentage from cards

This commit is contained in:
Nettika 2026-01-25 14:50:18 -08:00
parent 9e9967222f
commit 66da2274a7
No known key found for this signature in database

View file

@ -52,17 +52,12 @@ class ProjectCard extends HTMLElement {
background-color: var(--color-bg-secondary, #e9e9e9);
border-radius: var(--border-radius, 5px);
overflow: hidden;
margin-bottom: 0.5rem;
}
.progress-fill {
height: 100%;
background-color: var(--color-link, #118bee);
transition: width 0.3s ease;
}
.percentage {
font-size: 0.9rem;
color: var(--color-text-secondary, #999);
}
.archived-badge {
display: inline-block;
background-color: var(--color-text-secondary, #999);
@ -81,7 +76,6 @@ class ProjectCard extends HTMLElement {
<div class="progress-bar">
<div class="progress-fill" style="width: ${percentage}%"></div>
</div>
<div class="percentage">${percentage}% complete</div>
</div>
`;
}