use variant title for form title

This commit is contained in:
Abhinav 2022-05-20 17:07:02 +05:30
parent 2803daa6c4
commit 7447439674
4 changed files with 4 additions and 10 deletions

View file

@ -3,14 +3,7 @@ import { Typography, TypographyProps } from '@mui/material';
const FormPaperHeaderText: FC<TypographyProps> = ({ sx, ...props }) => { const FormPaperHeaderText: FC<TypographyProps> = ({ sx, ...props }) => {
return ( return (
<Typography <Typography variant="title" sx={{ mb: 8, ...sx }} {...props}>
css={`
font-size: 32px;
font-weight: 600;
line-height: 40px;
`}
sx={{ mb: 8, ...sx }}
{...props}>
{props.children} {props.children}
</Typography> </Typography>
); );

View file

@ -2,7 +2,7 @@ import { Paper, styled } from '@mui/material';
const FormPaper = styled(Paper)(({ theme }) => ({ const FormPaper = styled(Paper)(({ theme }) => ({
padding: theme.spacing(4, 2), padding: theme.spacing(4, 2),
width: '360px', maxWidth: '360px',
marginRight: theme.spacing(10), marginRight: theme.spacing(10),
[theme.breakpoints.down('md')]: { [theme.breakpoints.down('md')]: {
marginRight: theme.spacing(5), marginRight: theme.spacing(5),

View file

@ -37,7 +37,7 @@ export default function Home() {
</VerticallyCentered> </VerticallyCentered>
) : ( ) : (
<FormContainer> <FormContainer>
<FormPaper sx={{ minWidth: '320px' }}> <FormPaper>
<Login signUp={register} /> <Login signUp={register} />
</FormPaper> </FormPaper>
</FormContainer> </FormContainer>

View file

@ -156,6 +156,7 @@ const darkThemeOptions = createTheme({
fontSize: '32px', fontSize: '32px',
lineHeight: '40px', lineHeight: '40px',
fontWeight: 600, fontWeight: 600,
display: 'block',
}, },
fontFamily: ['Inter', 'sans-serif'].join(','), fontFamily: ['Inter', 'sans-serif'].join(','),
}, },