Fix NavSidebar buttons hover/focus background colors

This commit is contained in:
Jamie Kyle
2023-09-14 09:53:14 -07:00
committed by GitHub
parent 7443dd3314
commit 34740bdaff
3 changed files with 26 additions and 6 deletions

View File

@@ -184,12 +184,13 @@
padding: 4px;
border-radius: 4px;
&:hover {
&:hover,
&:focus {
@include light-theme {
background: $color-gray-20;
background-color: $color-black-alpha-06;
}
@include dark-theme {
background: $color-gray-62;
background-color: $color-white-alpha-06;
}
}