From 5c55a001a58908c5b6d9657d227482b7079d2e0b Mon Sep 17 00:00:00 2001 From: Puyodead1 Date: Sun, 3 Dec 2023 01:06:27 -0500 Subject: [PATCH] add back channel hover bg color --- src/components/ChannelList/ChannelListItem.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/ChannelList/ChannelListItem.tsx b/src/components/ChannelList/ChannelListItem.tsx index 50a3c53..d5359cc 100644 --- a/src/components/ChannelList/ChannelListItem.tsx +++ b/src/components/ChannelList/ChannelListItem.tsx @@ -23,6 +23,10 @@ const Wrapper = styled.div<{ isCategory?: boolean; active?: boolean }>` padding: ${(props) => (props.isCategory ? "0 8px 0 8px" : "0 16px")}; background-color: ${(props) => (props.active ? "var(--background-primary-alt)" : "transparent")}; justify-content: space-between; + + &:hover { + background-color: ${(props) => (props.isCategory ? "transparent" : "var(--background-primary-alt)")}; + } `; const Text = styled.span<{ isCategory?: boolean; hovered?: boolean }>`