8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e16b140 commit 3aeb3c0Copy full SHA for 3aeb3c0
site/src/pages/ManagementSettingsPage/SidebarView.tsx
@@ -412,7 +412,7 @@ const classNames = {
412
`,
413
414
subLink: (css, theme) => css`
415
- color: inherit;
+ color: ${theme.palette.text.secondary};
416
text-decoration: none;
417
418
display: block;
@@ -429,7 +429,8 @@ const classNames = {
429
}
430
431
432
- activeSubLink: (css) => css`
+ activeSubLink: (css, theme) => css`
433
+ color: ${theme.palette.text.primary};
434
font-weight: 600;
435
436
} satisfies Record<string, ClassName>;
0 commit comments