Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: cluster-wizard UI & oidc-scopes #3209

Merged
merged 13 commits into from
Aug 27, 2024
Next Next commit
fix: improved margin of oidc switch
  • Loading branch information
chriskari committed Aug 20, 2024
commit a5509d2865cefdc25023dcbcd43e23cb41572ab0
6 changes: 5 additions & 1 deletion src/components/Clusters/components/AuthForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,11 @@ export function AuthForm({
<ResourceForm.FormField
label={t('clusters.wizard.auth.using-oidc')}
input={() => (
<Switch checked={useOidc} onChange={switchAuthVariant} />
<Switch
style={spacing.sapUiTinyMarginTop}
checked={useOidc}
onChange={switchAuthVariant}
/>
)}
className="oidc-switch"
/>
Expand Down