mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
fix followers: align the followers to the left (#2211)
Co-authored-by: Gabe Kangas <gabek@real-ity.com>
This commit is contained in:
parent
52148e7510
commit
eb2c11b077
@ -1,6 +1,7 @@
|
|||||||
.followers {
|
.followers {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background-color: var(--theme-color-background-light);
|
background-color: var(--theme-color-background-light);
|
||||||
|
padding: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.noFollowers {
|
.noFollowers {
|
||||||
|
|||||||
@ -62,7 +62,7 @@ export const FollowerCollection: FC<FollowerCollectionProps> = ({ name }) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={styles.followers}>
|
<div className={styles.followers}>
|
||||||
<Row wrap gutter={[10, 10]} justify="space-around">
|
<Row wrap gutter={[10, 10]}>
|
||||||
{followers.map(follower => (
|
{followers.map(follower => (
|
||||||
<Col>
|
<Col>
|
||||||
<SingleFollower key={follower.link} follower={follower} />
|
<SingleFollower key={follower.link} follower={follower} />
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user