Merge branch 'fix-scroll-issue-on-mobile' into 'develop'
Fix overflow issue on mobile See merge request soapbox-pub/soapbox!2021
This commit is contained in:
commit
778b63ab56
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ const Welcome = () => {
|
|||
};
|
||||
|
||||
return (
|
||||
<Stack className='py-20 px-4 sm:px-0' data-testid='chats-welcome'>
|
||||
<Stack className='py-20 px-4 sm:px-0 h-full overflow-y-auto' data-testid='chats-welcome'>
|
||||
<div className='w-full sm:w-3/5 xl:w-2/5 mx-auto mb-10'>
|
||||
<Text align='center' weight='bold' className='mb-6 text-2xl md:text-3xl leading-8'>
|
||||
{intl.formatMessage(messages.title, { br: <br /> })}
|
||||
|
|
Loading…
Reference in a new issue