Skip to content

Commit

Permalink
fix dropdown focus bg color
Browse files Browse the repository at this point in the history
  • Loading branch information
rohandebsarkar committed Jul 11, 2022
1 parent 27ba43b commit 9564dd9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions _sass/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -154,9 +154,10 @@ blockquote {
}
.dropdown-item {
color: var(--global-text-color);
&:hover {
background-color: var(--global-bg-color);
&:hover, &:focus {
color: var(--global-hover-color);
background-color: var(--global-bg-color);
background-color: inherit;
}
}
.navbar.navbar-light {
Expand Down

0 comments on commit 9564dd9

Please sign in to comment.