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