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:
parent
47245b84c1
commit
5c55a001a5
@ -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 }>`
|
||||
|
Loading…
Reference in New Issue
Block a user