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

style(experience): increase padding for binding backup code page (#4744)

This commit is contained in:
Xiao Yijun 2023-10-25 13:59:11 +08:00 committed by GitHub
parent c93c96d59c
commit c1d7df329a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 10 deletions

View file

@ -4,7 +4,7 @@
@include _.flex-column(center);
align-items: stretch;
gap: _.unit(4);
margin-bottom: _.unit(4);
padding-bottom: _.unit(6);
}
.backupCodes {

View file

@ -61,16 +61,16 @@ const BackupCodeBinding = () => {
<div className={styles.hint}>
<DynamicT forKey="mfa.backup_code_hint" />
</div>
<Button
title="action.continue"
onClick={() => {
void sendMfaPayload({
flow: UserMfaFlow.MfaBinding,
payload: { type: MfaFactor.BackupCode },
});
}}
/>
</div>
<Button
title="action.continue"
onClick={() => {
void sendMfaPayload({
flow: UserMfaFlow.MfaBinding,
payload: { type: MfaFactor.BackupCode },
});
}}
/>
</SecondaryPageLayout>
);
};