Skip to content

Commit

Permalink
Fix the focused advanced search button color
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmz committed Oct 27, 2024
1 parent c6ed756 commit db1f0e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/layout-header.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ $without-sidebar: '(max-width: 991px)';
text-overflow: ellipsis;
}

&:hover {
&:is(:hover, :focus) {
background-color: #eee;
}

Expand All @@ -146,7 +146,7 @@ $without-sidebar: '(max-width: 991px)';
border-color: $separator-color;
}

:global(.dark-theme) &:hover {
:global(.dark-theme) &:is(:hover, :focus) {
background-color: $bg-color-lightest;
}
}
Expand Down

0 comments on commit db1f0e1

Please sign in to comment.