Skip to content

Commit

Permalink
fix: disclaimer message width
Browse files Browse the repository at this point in the history
  • Loading branch information
tomicvladan committed Dec 14, 2023
1 parent f318629 commit 04c405d
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/components/Forms/LoginForm/LoginForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,12 @@ const LoginForm: FC = () => {

return (
<div className="flex flex-col px-3 justify-center items-center">
<DisclaimerMessage
icon={IconType.WARNING}
text={disclaimerMessages.join(' ')}
/>
<div className="max-w-xl">
<DisclaimerMessage
icon={IconType.WARNING}
text={disclaimerMessages.join(' ')}
/>
</div>

<AuthenticationHeader
title={intl.get('WELCOME_BACK')}
Expand Down

0 comments on commit 04c405d

Please sign in to comment.