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:
2026-03-04 19:11:08 +00:00
co-authored by Claude Opus 4.6
parent d62280176a
commit d33c7653d4
2 changed files with 2 additions and 2 deletions
@@ -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 ${
isDashboardsPage && selected === ws.id
? '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)}
>
@@ -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 ${
isProjectsPage && selected === p.id
? '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)}
>