Skip to content

Commit

Permalink
💄 style: Fix UserInfo padding
Browse files Browse the repository at this point in the history
  • Loading branch information
canisminor1990 committed May 13, 2024
1 parent c327457 commit 303a88f
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/features/User/UserLoginOrSignup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@ const UserLoginOrSignup = memo<{ onClick: () => void }>(({ onClick }) => {
const { t } = useTranslation('auth');

return (
<Flexbox gap={16} paddingBlock={12} paddingInline={16} width={'100%'}>
<>
<UserInfo />
<Button block onClick={onClick} type={'primary'}>
{t('loginOrSignup')}
</Button>
</Flexbox>
<Flexbox paddingBlock={12} paddingInline={16} width={'100%'}>
<Button block onClick={onClick} type={'primary'}>
{t('loginOrSignup')}
</Button>
</Flexbox>
</>
);
});

Expand Down

0 comments on commit 303a88f

Please sign in to comment.