From 80be9f3e666efa8fb8fe510d7d6ea08ff8686b4c Mon Sep 17 00:00:00 2001 From: maceteligolden Date: Fri, 24 Nov 2023 19:46:15 +0100 Subject: [PATCH 1/3] update:add dark mode to task card --- apps/web/lib/components/kanban-card.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/web/lib/components/kanban-card.tsx b/apps/web/lib/components/kanban-card.tsx index d14f3ff16..23a48cdc7 100644 --- a/apps/web/lib/components/kanban-card.tsx +++ b/apps/web/lib/components/kanban-card.tsx @@ -102,7 +102,7 @@ export default function Item(props: any) { {...provided.draggableProps} {...provided.dragHandleProps} style={getStyle(provided, style)} - className="flex flex-col rounded-2xl bg-white p-4 relative" + className="flex flex-col rounded-2xl bg-white dark:bg-dark--theme-light p-4 relative" data-is-dragging={isDragging} data-testid={item.id} data-index={index} @@ -115,8 +115,8 @@ export default function Item(props: any) {
-

#213

-

{item.content}

+

#213

+

{item.content}

@@ -126,8 +126,8 @@ export default function Item(props: any) {
- Worked: -

0 h 0 m

+ Worked: +

0 h 0 m

From 3ce6261945f83f4aea3260db01c8e2562dbf57c6 Mon Sep 17 00:00:00 2001 From: maceteligolden Date: Fri, 24 Nov 2023 19:46:32 +0100 Subject: [PATCH 2/3] update:add new props to addicon --- apps/web/lib/components/svgs/icons.tsx | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/apps/web/lib/components/svgs/icons.tsx b/apps/web/lib/components/svgs/icons.tsx index e2ca3f280..83e8afe54 100644 --- a/apps/web/lib/components/svgs/icons.tsx +++ b/apps/web/lib/components/svgs/icons.tsx @@ -2221,11 +2221,18 @@ export function QuoteBlockIcon({ className }: IClassName) { ); } -export function AddIcon({ className }: IClassName) { - return ( - ) { + return ( + Date: Fri, 24 Nov 2023 19:46:57 +0100 Subject: [PATCH 3/3] update:add dark mode to dragdropcontext --- apps/web/lib/features/team-members-kanban-view.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/web/lib/features/team-members-kanban-view.tsx b/apps/web/lib/features/team-members-kanban-view.tsx index 3f0beea7f..4380908c9 100644 --- a/apps/web/lib/features/team-members-kanban-view.tsx +++ b/apps/web/lib/features/team-members-kanban-view.tsx @@ -148,7 +148,7 @@ export const KanbanView = ({ itemsArray }: { itemsArray: any}) => { > {(provided: DroppableProvided, snapshot: DroppableStateSnapshot) => (
@@ -165,8 +165,8 @@ export const KanbanView = ({ itemsArray }: { itemsArray: any}) => { title={column} items={items[column]} /> -
- +
+

Create Issues