diff --git a/web/components/ui/followers/FollowerCollection/FollowerCollection.module.scss b/web/components/ui/followers/FollowerCollection/FollowerCollection.module.scss index 2bb7c7512..8b0bca411 100644 --- a/web/components/ui/followers/FollowerCollection/FollowerCollection.module.scss +++ b/web/components/ui/followers/FollowerCollection/FollowerCollection.module.scss @@ -7,6 +7,12 @@ @include screen(desktop) { background-color: var(--theme-color-components-content-background); } + + @include screen(mobile) { + .followerRow { + justify-content: center; + } + } } .noFollowers { diff --git a/web/components/ui/followers/FollowerCollection/FollowerCollection.tsx b/web/components/ui/followers/FollowerCollection/FollowerCollection.tsx index 432c90cc1..1d3ccadaa 100644 --- a/web/components/ui/followers/FollowerCollection/FollowerCollection.tsx +++ b/web/components/ui/followers/FollowerCollection/FollowerCollection.tsx @@ -69,7 +69,7 @@ export const FollowerCollection: FC = ({ name, onFollow return (
- + {followers.map(follower => (