Skip to content

Commit

Permalink
minor color tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
tuckner committed Dec 12, 2023
1 parent 2209009 commit 020a281
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Board/TaskItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default function TaskItem({ tasks, index }: Props) {
className=""
onClick={handleOpenModal}
style={{
color: tasks.subtasks.length === 1 ? "#e6e22e" : tasks.subtasks.length === 2 ? "#8fb935" : "#e64747"
color: tasks.subtasks.length === 1 ? "#e6e22e" : tasks.subtasks.length >= 2 ? "#238823" : "#e64747"
}}
/>
</div>
Expand Down

0 comments on commit 020a281

Please sign in to comment.