From d4c764e8549439ee615b6b76af8baf05161bf54b Mon Sep 17 00:00:00 2001 From: Lewis England Date: Thu, 18 May 2023 09:29:15 +0000 Subject: [PATCH] style: override browser default checkbox behaviour --- src/components/tasklist/item.jsx | 4 ++-- src/styles/globals.css | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/tasklist/item.jsx b/src/components/tasklist/item.jsx index bf748af6..680aab78 100644 --- a/src/components/tasklist/item.jsx +++ b/src/components/tasklist/item.jsx @@ -3,7 +3,7 @@ export default function Item({ task }) {
  • - +
    {task.title}
    @@ -11,4 +11,4 @@ export default function Item({ task }) {
  • ); -} +} \ No newline at end of file diff --git a/src/styles/globals.css b/src/styles/globals.css index ea780576..56d64a06 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -57,4 +57,8 @@ body { ::-webkit-details-marker { display: none; +} + +.checkbox { + border-radius: 0.25em; } \ No newline at end of file