From 21564171d2fe41ea3519e2e241a5903c2bf6e931 Mon Sep 17 00:00:00 2001 From: Jamie Kyle <113370520+jamiebuilds-signal@users.noreply.github.com> Date: Mon, 16 Oct 2023 10:07:59 -0700 Subject: [PATCH] Fix StoryListItem dark-theme focus style --- stylesheets/components/StoryListItem.scss | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/stylesheets/components/StoryListItem.scss b/stylesheets/components/StoryListItem.scss index f1902e3d261d..13a90304ed14 100644 --- a/stylesheets/components/StoryListItem.scss +++ b/stylesheets/components/StoryListItem.scss @@ -13,14 +13,12 @@ padding-inline: 10px; width: 100%; - @include keyboard-mode { - &:focus { - @include light-theme { - background: $color-gray-15; - } - @include dark-theme { - background: $color-gray-65; - } + &:focus { + @include keyboard-mode { + background: $color-gray-15; + } + @include dark-keyboard-mode { + background: $color-gray-65; } }