diff --git a/web/src/style.css b/web/src/style.css index 702399f..ee70493 100644 --- a/web/src/style.css +++ b/web/src/style.css @@ -11,6 +11,8 @@ --warn-bg: #fff4e5; --warn-border: #f0c48a; --error: #b3261e; + /* Kanban inbox column: a touch lighter than a status column (var(--bg)). */ + --inbox-bg: #fcfcfd; color-scheme: light dark; } @@ -24,6 +26,7 @@ --warn-bg: #2e2415; --warn-border: #6b5220; --error: #f2b8b5; + --inbox-bg: #202027; } } @@ -406,6 +409,10 @@ h1 { padding: 0.75rem; } +.kanban__col--inbox { + background: var(--inbox-bg); +} + .kanban__head { display: flex; align-items: center; diff --git a/web/src/views/ProjectView.vue b/web/src/views/ProjectView.vue index bbc84c1..921cd96 100644 --- a/web/src/views/ProjectView.vue +++ b/web/src/views/ProjectView.vue @@ -344,7 +344,12 @@ async function onCreateInbox() {
Loading…