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

make channel list items use pointer cursor

This commit is contained in:
Puyodead1 2023-05-17 10:45:12 -04:00
parent c6bda1b7dd
commit b51f4149a8
No known key found for this signature in database
GPG Key ID: A4FA4FEC0DD353FC

View File

@ -15,6 +15,7 @@ const List = styled.div`
const ListItem = styled.li<{ isCategory?: boolean }>`
padding: ${(props) => (props.isCategory ? "16px 8px 0 0" : "1px 8px 0 0")};
cursor: pointer;
`;
const FirstWrapper = styled.div<{ isCategory?: boolean; active?: boolean }>`
margin-left: ${(props) => (props.isCategory ? "0" : "8px")};