removed top margin (#524)
fixing issue comment https://github.com/keycloak/keycloak-admin-ui/issues/422#issuecomment-815421080
This commit is contained in:
parent
2bcdf51075
commit
9ec20852be
1 changed files with 6 additions and 6 deletions
|
@ -180,7 +180,7 @@ export const AdvancedTab = ({
|
||||||
<PageSection variant="light">
|
<PageSection variant="light">
|
||||||
<ScrollForm sections={sections}>
|
<ScrollForm sections={sections}>
|
||||||
<>
|
<>
|
||||||
<Text className="pf-u-py-lg">
|
<Text className="pf-u-pb-lg">
|
||||||
<Trans i18nKey="clients-help:notBeforeIntro">
|
<Trans i18nKey="clients-help:notBeforeIntro">
|
||||||
In order to successfully push setup url on
|
In order to successfully push setup url on
|
||||||
<Link to={`/${realm}/clients/${id}/settings`}>
|
<Link to={`/${realm}/clients/${id}/settings`}>
|
||||||
|
@ -352,7 +352,7 @@ export const AdvancedTab = ({
|
||||||
<>
|
<>
|
||||||
{protocol === openIdConnect && (
|
{protocol === openIdConnect && (
|
||||||
<>
|
<>
|
||||||
<Text className="pf-u-py-lg">
|
<Text className="pf-u-pb-lg">
|
||||||
{t("clients-help:fineGrainOpenIdConnectConfiguration")}
|
{t("clients-help:fineGrainOpenIdConnectConfiguration")}
|
||||||
</Text>
|
</Text>
|
||||||
<FineGrainOpenIdConnect
|
<FineGrainOpenIdConnect
|
||||||
|
@ -366,7 +366,7 @@ export const AdvancedTab = ({
|
||||||
)}
|
)}
|
||||||
{protocol !== openIdConnect && (
|
{protocol !== openIdConnect && (
|
||||||
<>
|
<>
|
||||||
<Text className="pf-u-py-lg">
|
<Text className="pf-u-pb-lg">
|
||||||
{t("clients-help:fineGrainSamlEndpointConfig")}
|
{t("clients-help:fineGrainSamlEndpointConfig")}
|
||||||
</Text>
|
</Text>
|
||||||
<FineGrainSamlEndpointConfig
|
<FineGrainSamlEndpointConfig
|
||||||
|
@ -381,7 +381,7 @@ export const AdvancedTab = ({
|
||||||
</>
|
</>
|
||||||
{protocol === openIdConnect && (
|
{protocol === openIdConnect && (
|
||||||
<>
|
<>
|
||||||
<Text className="pf-u-py-lg">
|
<Text className="pf-u-pb-lg">
|
||||||
{t("clients-help:openIdConnectCompatibilityModes")}
|
{t("clients-help:openIdConnectCompatibilityModes")}
|
||||||
</Text>
|
</Text>
|
||||||
<OpenIdConnectCompatibilityModes
|
<OpenIdConnectCompatibilityModes
|
||||||
|
@ -394,7 +394,7 @@ export const AdvancedTab = ({
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
<>
|
<>
|
||||||
<Text className="pf-u-py-lg">
|
<Text className="pf-u-pb-lg">
|
||||||
{t("clients-help:advancedSettings" + toUpperCase(protocol || ""))}
|
{t("clients-help:advancedSettings" + toUpperCase(protocol || ""))}
|
||||||
</Text>
|
</Text>
|
||||||
<AdvancedSettings
|
<AdvancedSettings
|
||||||
|
@ -412,7 +412,7 @@ export const AdvancedTab = ({
|
||||||
/>
|
/>
|
||||||
</>
|
</>
|
||||||
<>
|
<>
|
||||||
<Text className="pf-u-py-lg">
|
<Text className="pf-u-pb-lg">
|
||||||
{t("clients-help:authenticationOverrides")}
|
{t("clients-help:authenticationOverrides")}
|
||||||
</Text>
|
</Text>
|
||||||
<AuthenticationOverrides
|
<AuthenticationOverrides
|
||||||
|
|
Loading…
Reference in a new issue