diff --git a/utils/todo.typ b/utils/todo.typ index 3edbdf0..27193ca 100644 --- a/utils/todo.typ +++ b/utils/todo.typ @@ -1,10 +1,12 @@ -#let TODO(body, color: yellow) = { - rect( - width: 100%, +#let TODO(body, color: yellow, width: 100%, breakable: true) = { + block( + width: width, radius: 3pt, stroke: 0.5pt, fill: color, + inset: 10pt, + breakable: breakable, )[ #body ] -} +} \ No newline at end of file