Skip to content

Commit

Permalink
fix: muted text for checked items
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph Brooksbank authored and Joseph Brooksbank committed Sep 5, 2023
1 parent 6f2047c commit 7ea1e6b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/ui/components/rendered-markdown.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@
}
.rendered-markdown :global(li) {
color: var(--text-normal) !important;
color: var(--text-normal);
}
.rendered-markdown :global(li.task-list-item[data-task="x"]),
.rendered-markdown :global(li.task-list-item[data-task="X"]) {
color: var(--text-muted);
}
</style>

0 comments on commit 7ea1e6b

Please sign in to comment.