Fix overflow of text in feed filtering

This commit is contained in:
Justin
2022-07-06 08:41:15 -04:00
parent b46ccc8b3e
commit 7b9a9c8e34

View File

@ -41,7 +41,7 @@ const CarouselItem = ({ avatar }: { avatar: any }) => {
/>
</div>
<Text theme='muted' size='sm' truncate align='center' className='leading-3'>{avatar.acct}</Text>
<Text theme='muted' size='sm' truncate align='center' className='leading-3 pb-0.5'>{avatar.acct}</Text>
</Stack>
</div>
);