fix list item text color in light mode for projects and dashboards
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -136,7 +136,7 @@ export const DashboardListApp = () => {
|
|||||||
className={`flex items-center gap-2.5 py-2 px-3 rounded-lg text-sm font-medium cursor-pointer group ${
|
className={`flex items-center gap-2.5 py-2 px-3 rounded-lg text-sm font-medium cursor-pointer group ${
|
||||||
isDashboardsPage && selected === ws.id
|
isDashboardsPage && selected === ws.id
|
||||||
? 'bg-duck-teal/10 text-duck-teal'
|
? 'bg-duck-teal/10 text-duck-teal'
|
||||||
: 'text-white/80 hover:bg-duck-dark/5'
|
: 'text-duck-dark/80 dark:text-white/80 hover:bg-duck-dark/5'
|
||||||
}`}
|
}`}
|
||||||
onClick={() => handleClick(ws)}
|
onClick={() => handleClick(ws)}
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -164,7 +164,7 @@ export const ProjectListApp = () => {
|
|||||||
className={`flex items-center gap-2.5 py-2 px-3 rounded-lg text-sm font-medium cursor-pointer group ${
|
className={`flex items-center gap-2.5 py-2 px-3 rounded-lg text-sm font-medium cursor-pointer group ${
|
||||||
isProjectsPage && selected === p.id
|
isProjectsPage && selected === p.id
|
||||||
? 'bg-emerald-500/10 text-emerald-400'
|
? 'bg-emerald-500/10 text-emerald-400'
|
||||||
: 'text-white/80 hover:bg-duck-dark/5'
|
: 'text-duck-dark/80 dark:text-white/80 hover:bg-duck-dark/5'
|
||||||
}`}
|
}`}
|
||||||
onClick={() => handleClick(p)}
|
onClick={() => handleClick(p)}
|
||||||
>
|
>
|
||||||
|
|||||||
Reference in New Issue
Block a user