Change margins (#96)
This commit is contained in:
parent
f8dbe5a2b7
commit
7a289e5eab
|
@ -172,4 +172,5 @@ const NotificationBagde = styled.div`
|
|||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-shrink: 0;
|
||||
`;
|
||||
|
|
|
@ -169,12 +169,12 @@ const ChannelsWrapper = styled.div`
|
|||
height: 100%;
|
||||
min-width: 196px;
|
||||
background-color: ${({ theme }) => theme.sectionBackgroundColor};
|
||||
padding: 10px 0.6%;
|
||||
padding: 10px 16px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
`;
|
||||
|
||||
const StyledCommunity = styled(Community)`
|
||||
padding: 0 0 0 10px;
|
||||
padding: 0 0 0 8px;
|
||||
margin: 0 0 16px;
|
||||
`;
|
||||
|
|
|
@ -47,6 +47,7 @@ const Logo = styled.img`
|
|||
const Name = styled.p`
|
||||
font-family: "Inter", sans-serif;
|
||||
font-weight: 500;
|
||||
text-align: left;
|
||||
color: ${({ theme }) => theme.primary};
|
||||
|
||||
${textMediumStyles}
|
||||
|
|
|
@ -20,6 +20,7 @@ export const CommunitySkeleton = () => {
|
|||
const LogoSkeleton = styled(Skeleton)`
|
||||
border-radius: 50%;
|
||||
margin-right: 8px;
|
||||
flex-shrink: 0;
|
||||
`;
|
||||
|
||||
const Loading = styled.div`
|
||||
|
|
Loading…
Reference in New Issue