From 3210b78c28760dbe74498dad17ead48fab85b80b Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Wed, 21 Jan 2026 23:32:01 +0100 Subject: [PATCH] design: add success checkbox and remove unecessary list decoration --- src/styles/app.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/styles/app.css b/src/styles/app.css index 74e08f0..8857547 100644 --- a/src/styles/app.css +++ b/src/styles/app.css @@ -227,3 +227,12 @@ iframe { border-radius: 1rem; height: 400px; } + +/* TODO page */ +.todo-notes input[type="checkbox"] { + @apply checkbox checkbox-success; +} + +.todo-notes li:has(> input[type="checkbox"]) { + list-style: none; +}