Change margins (#96)

This commit is contained in:
Maria Rushkova 2021-10-26 08:06:51 +02:00 committed by GitHub
parent f8dbe5a2b7
commit 7a289e5eab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 2 deletions

View File

@ -172,4 +172,5 @@ const NotificationBagde = styled.div`
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
`;

View File

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

View File

@ -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}

View File

@ -20,6 +20,7 @@ export const CommunitySkeleton = () => {
const LogoSkeleton = styled(Skeleton)`
border-radius: 50%;
margin-right: 8px;
flex-shrink: 0;
`;
const Loading = styled.div`