Fix background colors (#28)
This commit is contained in:
parent
e4710c3445
commit
34ce0c4c87
|
@ -72,7 +72,7 @@ const ChatBodyWrapper = styled.div<ThemeProps>`
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: ${({ theme }) => theme.textPrimaryColor};
|
background: ${({ theme }) => theme.bodyBackgroundColor};
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const ChannelWrapper = styled.div`
|
const ChannelWrapper = styled.div`
|
||||||
|
@ -100,7 +100,7 @@ const CommunityWrap = styled.div<ThemeProps>`
|
||||||
height: 24px;
|
height: 24px;
|
||||||
transform: translateY(-50%);
|
transform: translateY(-50%);
|
||||||
border-radius: 1px;
|
border-radius: 1px;
|
||||||
background: ${({ theme }) => theme.bodyBackgroundColor};
|
background: ${({ theme }) => theme.textPrimaryColor};
|
||||||
opacity: 0.1;
|
opacity: 0.1;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
Loading…
Reference in New Issue