Skip to content

Commit 3aeb3c0

Browse files
committed
fix: update text contrast for org menu list
1 parent e16b140 commit 3aeb3c0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

site/src/pages/ManagementSettingsPage/SidebarView.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ const classNames = {
412412
`,
413413

414414
subLink: (css, theme) => css`
415-
color: inherit;
415+
color: ${theme.palette.text.secondary};
416416
text-decoration: none;
417417
418418
display: block;
@@ -429,7 +429,8 @@ const classNames = {
429429
}
430430
`,
431431

432-
activeSubLink: (css) => css`
432+
activeSubLink: (css, theme) => css`
433+
color: ${theme.palette.text.primary};
433434
font-weight: 600;
434435
`,
435436
} satisfies Record<string, ClassName>;

0 commit comments

Comments
 (0)