fix: button hover background color (#1653)

This PR updates the hover background for the top navigation buttons that are shown when the left side navigation is enabled. The hover background is updated to match the hover background of other existing IconButton components, see DiscussionNotificationTrigger.jsx, on the page.
This commit is contained in:
Kristin Aoki
2025-03-25 13:03:29 -04:00
committed by GitHub
parent 226c4cc1d7
commit 81b621195e
2 changed files with 2 additions and 4 deletions

View File

@@ -47,8 +47,7 @@ const NextButton = ({
if (isAtTop) {
return (
<IconButton
variant="light"
className={buttonStyle}
className={`${buttonStyle} icon-hover`}
onClick={onClick}
src={nextArrow}
disabled={disabled}

View File

@@ -40,8 +40,7 @@ const PreviousButton = ({
if (isAtTop) {
return (
<IconButton
variant="light"
className={buttonStyle}
className={`${buttonStyle} icon-hover`}
onClick={onClickHandler}
src={prevArrow}
disabled={disabled}