Directory Skeleton (#119)

This commit is contained in:
Maria Rushkova 2021-07-15 07:19:37 +02:00 committed by GitHub
parent 8e6ba7ec48
commit f9c10113c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 1 deletions

View File

@ -9,7 +9,7 @@ export const DirectoryCardSkeleton = () => {
return (
<Card>
<CardCommunityWrap>
<CommunitySkeleton />
<CommunitySkeleton customStyle={true} />
</CardCommunityWrap>
<CardVoteWrap>
<CardVoteBlock>
@ -32,6 +32,10 @@ const CardHeader = styled.div`
justify-content: center;
width: 100%;
margin-bottom: 54px;
@media (max-width: 768px) {
margin-bottom: 32px;
}
`
const SkeletonButton = styled(Skeleton)`
@ -52,4 +56,8 @@ const Column = styled(ColumnFlexDiv)`
margin-bottom: 8px;
mix-blend-mode: luminosity;
}
@media (max-width: 768px) {
display: none;
}
`