Browse Source

fix followers: align the followers to the left (#2211)

Co-authored-by: Gabe Kangas <gabek@real-ity.com>
pull/2217/head
Pranav Joglekar 3 years ago committed by GitHub
parent
commit
eb2c11b077
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      web/components/ui/followers/FollowerCollection/FollowerCollection.module.scss
  2. 2
      web/components/ui/followers/FollowerCollection/FollowerCollection.tsx

1
web/components/ui/followers/FollowerCollection/FollowerCollection.module.scss

@ -1,6 +1,7 @@ @@ -1,6 +1,7 @@
.followers {
width: 100%;
background-color: var(--theme-color-background-light);
padding: 5px;
}
.noFollowers {

2
web/components/ui/followers/FollowerCollection/FollowerCollection.tsx

@ -62,7 +62,7 @@ export const FollowerCollection: FC<FollowerCollectionProps> = ({ name }) => { @@ -62,7 +62,7 @@ export const FollowerCollection: FC<FollowerCollectionProps> = ({ name }) => {
return (
<div className={styles.followers}>
<Row wrap gutter={[10, 10]} justify="space-around">
<Row wrap gutter={[10, 10]}>
{followers.map(follower => (
<Col>
<SingleFollower key={follower.link} follower={follower} />

Loading…
Cancel
Save