Fix StoryListItem dark-theme focus style

This commit is contained in:
Jamie Kyle 2023-10-16 10:07:59 -07:00 committed by GitHub
parent b6f1b8b577
commit 21564171d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,16 +13,14 @@
padding-inline: 10px; padding-inline: 10px;
width: 100%; width: 100%;
@include keyboard-mode {
&:focus { &:focus {
@include light-theme { @include keyboard-mode {
background: $color-gray-15; background: $color-gray-15;
} }
@include dark-theme { @include dark-keyboard-mode {
background: $color-gray-65; background: $color-gray-65;
} }
} }
}
// highlighted on hover and when it has triggered a context menu // highlighted on hover and when it has triggered a context menu
// that has not been closed yet (active) // that has not been closed yet (active)