Fix narrow scrolling (#72)
This commit is contained in:
parent
a88eb5690f
commit
6fa1eddbc7
|
@ -50,4 +50,5 @@ export function NarrowChannels({
|
||||||
const ListWrapper = styled.div`
|
const ListWrapper = styled.div`
|
||||||
padding: 0px 18px 18px;
|
padding: 0px 18px 18px;
|
||||||
background: ${({ theme }) => theme.bodyBackgroundColor};
|
background: ${({ theme }) => theme.bodyBackgroundColor};
|
||||||
|
overflow: auto;
|
||||||
`;
|
`;
|
||||||
|
|
|
@ -32,4 +32,5 @@ export function NarrowMembers({
|
||||||
const ListWrapper = styled.div`
|
const ListWrapper = styled.div`
|
||||||
padding: 0px 18px 18px;
|
padding: 0px 18px 18px;
|
||||||
background: ${({ theme }) => theme.bodyBackgroundColor};
|
background: ${({ theme }) => theme.bodyBackgroundColor};
|
||||||
|
overflow: auto;
|
||||||
`;
|
`;
|
||||||
|
|
Loading…
Reference in New Issue