diff --git a/public/pages/tasks.js b/public/pages/tasks.js
index a505041..75a42f2 100644
--- a/public/pages/tasks.js
+++ b/public/pages/tasks.js
@@ -157,7 +157,7 @@ function renderTaskCard(task, opts = {}) {
${esc(s.title)}
`).join('')
diff --git a/public/styles/layout.css b/public/styles/layout.css
old mode 100644
new mode 100755
index 265fcbb..da8f894
--- a/public/styles/layout.css
+++ b/public/styles/layout.css
@@ -202,11 +202,24 @@
flex-shrink: 0;
}
+.nav-badge {
+ display: inline-flex;
+ align-items: center;
+ justify-content: center;
+ min-width: 18px;
+ height: 18px;
+ padding: 0 var(--space-1);
+ border-radius: var(--radius-full);
+ background-color: var(--color-danger);
+ color: var(--color-text-on-accent);
+ font-size: var(--text-xs);
+ font-weight: var(--font-weight-bold);
+}
+
.nav-item__icon-wrap .nav-badge {
position: absolute;
top: calc(-1 * var(--space-1));
right: calc(-1 * var(--space-1));
- margin-left: 0;
}
.nav-item:active {
diff --git a/public/styles/tasks.css b/public/styles/tasks.css
index db5eb5e..66ec1a3 100644
--- a/public/styles/tasks.css
+++ b/public/styles/tasks.css
@@ -436,6 +436,12 @@
animation: check-pop 0.15s var(--ease-out);
}
+.subtask-item__checkbox-icon {
+ width: 10px;
+ height: 10px;
+ color: var(--color-text-on-accent);
+}
+
.subtask-item__title {
font-size: var(--text-sm);
color: var(--color-text-primary);
@@ -467,24 +473,6 @@
color: var(--color-accent);
}
-/* --------------------------------------------------------
- * Overdue-Badge (Navigation)
- * -------------------------------------------------------- */
-.nav-badge {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- min-width: 18px;
- height: 18px;
- padding: 0 var(--space-1);
- border-radius: var(--radius-full);
- background-color: var(--color-danger);
- color: var(--color-text-on-accent);
- font-size: var(--text-xs);
- font-weight: var(--font-weight-bold);
- margin-left: auto;
-}
-
/* --------------------------------------------------------
* Kanban-Board
* -------------------------------------------------------- */