mirror of
https://github.com/docmost/docmost.git
synced 2026-05-07 14:43:06 +08:00
662460252f
* feat(EE): MFA implementation for enterprise edition - Add TOTP-based two-factor authentication - Add backup codes support - Add MFA enforcement at workspace level - Add MFA setup and challenge UI pages - Support MFA for login and password reset flows - Add MFA validation for secure pages * fix types * remove unused object * sync * remove unused type * sync * refactor: rename MFA enabled field to is_enabled * sync
31 lines
549 B
CSS
31 lines
549 B
CSS
.qrCodeContainer {
|
|
background-color: white;
|
|
padding: 1rem;
|
|
border-radius: var(--mantine-radius-md);
|
|
display: inline-block;
|
|
}
|
|
|
|
.backupCodesList {
|
|
font-family: var(--mantine-font-family-monospace);
|
|
background-color: var(--mantine-color-gray-0);
|
|
padding: 1rem;
|
|
border-radius: var(--mantine-radius-md);
|
|
|
|
@mixin dark {
|
|
background-color: var(--mantine-color-dark-7);
|
|
}
|
|
}
|
|
|
|
.codeItem {
|
|
padding: 0.25rem 0;
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
.setupStep {
|
|
min-height: 400px;
|
|
}
|
|
|
|
.verificationInput {
|
|
max-width: 320px;
|
|
margin: 0 auto;
|
|
} |