1
0
mirror of https://github.com/spacebarchat/client.git synced 2024-11-22 10:22:30 +01:00

add back channel hover bg color

This commit is contained in:
Puyodead1 2023-12-03 01:06:27 -05:00
parent 47245b84c1
commit 5c55a001a5
No known key found for this signature in database
GPG Key ID: A4FA4FEC0DD353FC

View File

@ -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 }>`