0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-06 20:40:08 -05:00

fix(console): others form height in SIE (#1210)

This commit is contained in:
Wang Sijie 2022-06-24 10:44:52 +08:00 committed by GitHub
parent ca77a41973
commit 8d2f88b96d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 1 deletions

View file

@ -19,10 +19,20 @@
.card {
padding-bottom: 0;
flex: 1;
display: flex;
flex-direction: column;
}
.formWrapper {
flex: 1;
display: flex;
flex-direction: column;
}
.form {
padding-bottom: _.unit(8);
flex: 1;
}
}
}

View file

@ -115,7 +115,7 @@ const SignInExperience = () => {
{!data && error && <div>{`error occurred: ${error.body?.message ?? error.message}`}</div>}
{data && (
<FormProvider {...methods}>
<form onSubmit={onSubmit}>
<form className={styles.formWrapper} onSubmit={onSubmit}>
<div className={classNames(detailsStyles.body, styles.form)}>
{tab === 'branding' && (
<>