Fix narrow scrolling (#72)

This commit is contained in:
Maria Rushkova 2021-10-15 11:24:22 +02:00 committed by GitHub
parent a88eb5690f
commit 6fa1eddbc7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

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

View File

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