Files
signoz/frontend/src/container/OrganizationSettings/AuthDomain/CreateEdit/CreateEdit.styles.scss
Vibhu Pandey c122bc09b4 feat(tokenizer|sso): add tokenizer for session management and oidc sso support (#9183)
## 📄 Summary

- Instead of relying on JWT for session management, we are adding another token system: opaque. This gives the benefits of expiration and revocation.

- We are now ensuring that emails are regex checked throughout the backend.

- Support has been added for OIDC protocol
2025-10-16 18:00:38 +05:30

40 lines
524 B
SCSS

.authn-provider-selector {
display: flex;
flex-direction: column;
.header {
display: flex;
flex-direction: column;
}
.selector {
display: flex;
flex-direction: column;
gap: 16px;
.provider {
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
.title-description {
.title {
font-weight: bold;
}
}
}
}
}
.ant-modal-body {
.auth-domain-configure {
.action-buttons {
display: flex;
justify-content: end;
gap: 8px;
margin-top: 16px;
}
}
}