Merge branch 'feed-suggestions-images' into 'develop'

Add object-cover to avatars in FeedSuggestions

See merge request soapbox-pub/soapbox-fe!1648
This commit is contained in:
marcin mikołajczak 2022-07-18 19:55:46 +00:00
commit 9fe3c4f992

View file

@ -27,7 +27,7 @@ const SuggestionItem = ({ accountId }: { accountId: string }) => {
<Stack space={3}> <Stack space={3}>
<img <img
src={account.avatar} src={account.avatar}
className='mx-auto block w-16 h-16 min-w-[56px] rounded-full' className='mx-auto block w-16 h-16 min-w-[56px] rounded-full object-cover'
alt={account.acct} alt={account.acct}
/> />