diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/useInventoryStep.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/useInventoryStep.jsx index 20c3d19da0..03fd193758 100644 --- a/awx/ui_next/src/components/LaunchPrompt/steps/useInventoryStep.jsx +++ b/awx/ui_next/src/components/LaunchPrompt/steps/useInventoryStep.jsx @@ -1,10 +1,15 @@ import React from 'react'; import { t } from '@lingui/macro'; import { useField } from 'formik'; +import styled from 'styled-components'; import { Alert } from '@patternfly/react-core'; import InventoryStep from './InventoryStep'; import StepName from './StepName'; +const InventoryAlert = styled(Alert)` + margin-bottom: 16px; +`; + const STEP_ID = 'inventory'; export default function useInventoryStep( @@ -53,11 +58,11 @@ function getStep(launchConfig, i18n, formError, resource) { i18n={i18n} warningMessage={ resource.type === 'workflow_job_template' ? ( - ) : null