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); @include _.flex-column(center);
align-items: stretch; align-items: stretch;
gap: _.unit(4); gap: _.unit(4);
margin-bottom: _.unit(4); padding-bottom: _.unit(6);
} }
.backupCodes { .backupCodes {

View file

@ -61,7 +61,6 @@ const BackupCodeBinding = () => {
<div className={styles.hint}> <div className={styles.hint}>
<DynamicT forKey="mfa.backup_code_hint" /> <DynamicT forKey="mfa.backup_code_hint" />
</div> </div>
</div>
<Button <Button
title="action.continue" title="action.continue"
onClick={() => { onClick={() => {
@ -71,6 +70,7 @@ const BackupCodeBinding = () => {
}); });
}} }}
/> />
</div>
</SecondaryPageLayout> </SecondaryPageLayout>
); );
}; };