Skip to content

Commit

Permalink
fix: better padding
Browse files Browse the repository at this point in the history
  • Loading branch information
IanKrieger committed Aug 28, 2023
1 parent 0edd174 commit 357ffb2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/auth/registration/Register.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function Register() {
return (
<Background>
<LandingPageAppBar />
<Toolbar sx={{ mb: isMobile ? undefined : 1.5, mt: 3 }} />
<Toolbar sx={{ mb: isMobile ? undefined : 1.5, mt: 1 }} />
<Box display="flex" maxWidth="725px" flexDirection="column" mb={3}>
<Typography textAlign="center" variant="h4" sx={{ mb: 3 }}>
{steps[activeStep].label}
Expand Down
2 changes: 1 addition & 1 deletion src/auth/views/LandingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function LandingPage() {
return (
<Background>
<LandingPageAppBar />
{isMobile && <Toolbar sx={{ mb: 1 }} />}
<Toolbar sx={{ mb: 1 }} />
<Stack
direction="row"
alignItems="center"
Expand Down

0 comments on commit 357ffb2

Please sign in to comment.