Fix background colors (#28)

This commit is contained in:
Maria Rushkova 2021-10-01 15:51:08 +02:00 committed by GitHub
parent e4710c3445
commit 34ce0c4c87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ const ChatBodyWrapper = styled.div<ThemeProps>`
flex-direction: column;
flex: 1;
height: 100%;
background: ${({ theme }) => theme.textPrimaryColor};
background: ${({ theme }) => theme.bodyBackgroundColor};
`;
const ChannelWrapper = styled.div`
@ -100,7 +100,7 @@ const CommunityWrap = styled.div<ThemeProps>`
height: 24px;
transform: translateY(-50%);
border-radius: 1px;
background: ${({ theme }) => theme.bodyBackgroundColor};
background: ${({ theme }) => theme.textPrimaryColor};
opacity: 0.1;
}
`;