Skip to content

Commit

Permalink
Fix font on the Reset Password page
Browse files Browse the repository at this point in the history
  • Loading branch information
Viktor Riabkov committed Mar 22, 2024
1 parent 6e4a18c commit 2832750
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/ForgotPassword/index.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import Box from '@mui/material/Box';
import Typography from '@mui/material/Typography';

import { ForgotPasswordForm } from '~/features/ForgotPassword';
import { Theme } from '~/shared/constants';
import { Text } from '~/shared/ui';
import { useCustomTranslation } from '~/shared/utils';

function ForgotPasswordPage() {
Expand All @@ -11,9 +11,9 @@ function ForgotPasswordPage() {
return (
<Box display="flex" flex={1}>
<Box flex={1} textAlign="center" margin="24px 0px" padding="0px 12px">
<Typography variant="h4" margin="16px 0px">
<Text variant="h4" margin="16px 0px">
{t('title')}
</Typography>
</Text>

<Box bgcolor={Theme.colors.light.onPrimary} padding="10px" maxWidth="400px" margin="0 auto">
<ForgotPasswordForm />
Expand Down

0 comments on commit 2832750

Please sign in to comment.