Skip to content

Commit

Permalink
Filter hover color (#1861)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lehats authored Feb 5, 2025
2 parents fd10734 + cc1fac8 commit b1fc72c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

- The settings are now displayed in tabs.

### Fixed

- When hovering over the main side navigation icons, an incorrect background color was displayed for the hovered icon.

## v2.1.1052 - 2025-02-04

### Added
Expand Down
4 changes: 2 additions & 2 deletions src/client/src/components/buttons/navButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ export const NavButton = forwardRef<HTMLButtonElement, NavButtonProps>((props, r
width: "fit-content",
transition: "background-color 0.3s ease, color 0.3s ease, width 0.3s ease",
"&:hover": {
backgroundColor: `${theme.palette.secondary.main} !important`,
color: `${theme.palette.secondary.contrastText} !important`,
backgroundColor: `${theme.palette.primary.main} !important`,
color: `${theme.palette.primary.contrastText} !important`,
width: "fit-content",
whiteSpace: "nowrap",
zIndex: 6000,
Expand Down

0 comments on commit b1fc72c

Please sign in to comment.