fix(TaskCard): update background color for improved UI consistency
- Changed the background color of the TaskCard component from '#f0f0f0' to '#E2EAF4' in light mode to enhance visual consistency and user experience.
This commit is contained in:
@@ -210,7 +210,7 @@ const TaskCard: React.FC<TaskCardProps> = memo(({
|
||||
>
|
||||
<div className="w-full h-full bg-red-500"style={{
|
||||
height: 80,
|
||||
background: themeMode === 'dark' ? '#2a2a2a' : '#f0f0f0',
|
||||
background: themeMode === 'dark' ? '#2a2a2a' : '#E2EAF4',
|
||||
borderRadius: 6,
|
||||
border: `5px`
|
||||
}}></div>
|
||||
|
||||
Reference in New Issue
Block a user