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,14 +13,12 @@
padding-inline: 10px; padding-inline: 10px;
width: 100%; width: 100%;
@include keyboard-mode { &:focus {
&:focus { @include keyboard-mode {
@include light-theme { background: $color-gray-15;
background: $color-gray-15; }
} @include dark-keyboard-mode {
@include dark-theme { background: $color-gray-65;
background: $color-gray-65;
}
} }
} }