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

Co-authored-by: Gabe Kangas <gabek@real-ity.com>
This commit is contained in:
Pranav Joglekar 2022-10-17 11:48:05 +05:30 committed by GitHub
parent 52148e7510
commit eb2c11b077
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

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

View File

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