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:
parent
c93c96d59c
commit
c1d7df329a
2 changed files with 10 additions and 10 deletions
|
@ -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 {
|
||||||
|
|
|
@ -61,16 +61,16 @@ const BackupCodeBinding = () => {
|
||||||
<div className={styles.hint}>
|
<div className={styles.hint}>
|
||||||
<DynamicT forKey="mfa.backup_code_hint" />
|
<DynamicT forKey="mfa.backup_code_hint" />
|
||||||
</div>
|
</div>
|
||||||
|
<Button
|
||||||
|
title="action.continue"
|
||||||
|
onClick={() => {
|
||||||
|
void sendMfaPayload({
|
||||||
|
flow: UserMfaFlow.MfaBinding,
|
||||||
|
payload: { type: MfaFactor.BackupCode },
|
||||||
|
});
|
||||||
|
}}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<Button
|
|
||||||
title="action.continue"
|
|
||||||
onClick={() => {
|
|
||||||
void sendMfaPayload({
|
|
||||||
flow: UserMfaFlow.MfaBinding,
|
|
||||||
payload: { type: MfaFactor.BackupCode },
|
|
||||||
});
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</SecondaryPageLayout>
|
</SecondaryPageLayout>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue