update the submit button margin

This commit is contained in:
Abhinav 2022-05-19 23:02:07 +05:30
parent a1b79d1c19
commit 3dc1b60e90
3 changed files with 5 additions and 2 deletions

View file

@ -80,6 +80,7 @@ export default function Login(props: LoginProps) {
/>
<SubmitButton
sx={{ mb: 4 }}
buttonText={constants.LOGIN}
loading={waiting}
/>

View file

@ -12,8 +12,9 @@ const SubmitButton: FC<ButtonProps<'button', Props>> = ({
buttonText,
inline,
disabled,
sx,
...props
}: Props) => {
}) => {
return (
<Button
size="large"
@ -22,6 +23,7 @@ const SubmitButton: FC<ButtonProps<'button', Props>> = ({
type="submit"
fullWidth={!inline}
disabled={loading || disabled}
sx={{ my: 2, ...sx }}
{...props}>
{loading ? <CircularProgress size={25} /> : buttonText}
</Button>

View file

@ -163,7 +163,7 @@ export default function Verify() {
/>
<SubmitButton
sx={{ mt: 2, mb: 4 }}
sx={{ mb: 4 }}
buttonText={constants.VERIFY}
loading={loading}
/>