Skip to content

Commit

Permalink
update:add dark mode to dragdropcontext
Browse files Browse the repository at this point in the history
  • Loading branch information
maceteligolden committed Nov 24, 2023
1 parent 3ce6261 commit 4d9619e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/web/lib/features/team-members-kanban-view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export const KanbanView = ({ itemsArray }: { itemsArray: any}) => {
>
{(provided: DroppableProvided, snapshot: DroppableStateSnapshot) => (
<div
className={clsxm("flex flex-row gap-[20px] w-full h-full p-[32px] bg-transparent", snapshot.isDraggingOver ? "lightblue" : "#F7F7F8")}
className={clsxm("flex flex-row gap-[20px] w-full h-full p-[32px] bg-transparent dark:bg-[#181920]", snapshot.isDraggingOver ? "lightblue" : "#F7F7F8")}
ref={provided.innerRef}
{...provided.droppableProps}
>
Expand All @@ -165,8 +165,8 @@ export const KanbanView = ({ itemsArray }: { itemsArray: any}) => {
title={column}
items={items[column]}
/>
<div className="flex flex-row items-center text-base not-italic font-semibold rounded-2xl gap-4 bg-white p-4">
<AddIcon/>
<div className="flex flex-row items-center text-base not-italic font-semibold rounded-2xl gap-4 bg-white dark:bg-dark--theme-light p-4">
<AddIcon height={20} width={20}/>
<p>Create Issues</p>
</div>
</div>
Expand Down

0 comments on commit 4d9619e

Please sign in to comment.