mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-24 01:18:01 +02:00
fix: adds bottom margin to SSO sync info box (#2674)
https://linear.app/unleash/issue/2-495/group-form-small-ui-fix
This commit is contained in:
parent
419640fb2b
commit
a8cd3166d1
@ -7,7 +7,6 @@ import { ConditionallyRender } from 'component/common/ConditionallyRender/Condit
|
|||||||
import { GroupFormUsersSelect } from './GroupFormUsersSelect/GroupFormUsersSelect';
|
import { GroupFormUsersSelect } from './GroupFormUsersSelect/GroupFormUsersSelect';
|
||||||
import { GroupFormUsersTable } from './GroupFormUsersTable/GroupFormUsersTable';
|
import { GroupFormUsersTable } from './GroupFormUsersTable/GroupFormUsersTable';
|
||||||
import { ItemList } from 'component/common/ItemList/ItemList';
|
import { ItemList } from 'component/common/ItemList/ItemList';
|
||||||
import useUiConfig from 'hooks/api/getters/useUiConfig/useUiConfig';
|
|
||||||
import useAuthSettings from 'hooks/api/getters/useAuthSettings/useAuthSettings';
|
import useAuthSettings from 'hooks/api/getters/useAuthSettings/useAuthSettings';
|
||||||
import { Link } from 'react-router-dom';
|
import { Link } from 'react-router-dom';
|
||||||
import { HelpIcon } from 'component/common/HelpIcon/HelpIcon';
|
import { HelpIcon } from 'component/common/HelpIcon/HelpIcon';
|
||||||
@ -57,6 +56,7 @@ const StyledDescriptionBlock = styled('div')(({ theme }) => ({
|
|||||||
color: theme.palette.grey[900],
|
color: theme.palette.grey[900],
|
||||||
fontSize: theme.fontSizes.smallBody,
|
fontSize: theme.fontSizes.smallBody,
|
||||||
borderRadius: theme.shape.borderRadiusMedium,
|
borderRadius: theme.shape.borderRadiusMedium,
|
||||||
|
marginBottom: theme.spacing(2),
|
||||||
}));
|
}));
|
||||||
|
|
||||||
interface IGroupForm {
|
interface IGroupForm {
|
||||||
@ -89,8 +89,6 @@ export const GroupForm: FC<IGroupForm> = ({
|
|||||||
mode,
|
mode,
|
||||||
children,
|
children,
|
||||||
}) => {
|
}) => {
|
||||||
const { uiConfig, isOss } = useUiConfig();
|
|
||||||
|
|
||||||
const { config: oidcSettings } = useAuthSettings('oidc');
|
const { config: oidcSettings } = useAuthSettings('oidc');
|
||||||
const { config: samlSettings } = useAuthSettings('saml');
|
const { config: samlSettings } = useAuthSettings('saml');
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user