From d7fdb010b499eda04125da9e33fe1d1314b077df Mon Sep 17 00:00:00 2001 From: Marius Levang Date: Thu, 5 Sep 2024 16:56:24 +0200 Subject: [PATCH] fix comments --- src/app/globals.css | 6 ++++++ src/components/IssueList.tsx | 33 ++++++++++++++++++++------------- 2 files changed, 26 insertions(+), 13 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index e235df0..f92e016 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -36,6 +36,12 @@ input[type=number] { @apply disabled:bg-gray-400; } +.delete-button-style { + @apply bg-red-400 enabled:hover:bg-red-600; + @apply text-medium font-bold text-black; + @apply disabled:bg-gray-400; +} + .top-title-style { @apply text-4xl font-bold text-black; } diff --git a/src/components/IssueList.tsx b/src/components/IssueList.tsx index 673275b..b57e7bb 100644 --- a/src/components/IssueList.tsx +++ b/src/components/IssueList.tsx @@ -333,29 +333,36 @@ export default function IssueList(props: {title: title; box: box}) { : <> - - + + } : - + + } } - + + ))}