Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: new portal edits - /student/dashboard/independent/join #114

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const DeleteAccountForm: React.FC<DeleteAccountFormProps> = ({
});
}}
>
<Grid container columnSpacing={4}>
<Grid container columnSpacing={4} paddingBottom={3}>
<Grid xs={12} sm={6}>
<PasswordField
placeholder='Current password'
Expand Down
1 change: 1 addition & 0 deletions frontend/src/pages/resetPassword/EmailForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ const EmailForm: React.FC<EmailFormProps> = ({
direction='row'
gap={5}
justifyContent='center'
paddingY={3}
>
<Button
variant='outlined'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const AccountFormButtons: React.FC = () => {
const navigate = useNavigate();

return <>
<Stack direction='row' spacing={2}>
<Stack direction='row' spacing={2} paddingY={3}>
<Button
variant='outlined'
onClick={() => { navigate(-1); }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const JoinSchool: React.FC = () => {
required
/>

<Stack direction='row' spacing={2}>
<Stack direction='row' spacing={2} paddingY={3}>
<Button
variant='outlined'
onClick={() => { navigate(-1); }}
Expand Down