Task status badge and index

This commit is contained in:
2025-10-30 02:23:05 +02:00
parent ba2aad93af
commit 8bb22f8e04
6 changed files with 51 additions and 3 deletions
+19
View File
@@ -0,0 +1,19 @@
.task-status {
--color: var(--backlog-color);
--background-color: var(--backlog-bg);
&.analysis {
--color: var(--analysis-color);
--background-color: var(--analysis-bg);
}
&.development {
--color: var(--info-color);
--background-color: var(--info-bg);
}
&.fulfillment {
--color: var(--success-color);
--background-color: var(--success-bg);
}
}