Skip to content

Commit

Permalink
[Security Solution] Fix styling of EditDataProvider content (#81456)
Browse files Browse the repository at this point in the history
Co-authored-by: Kibana Machine <[email protected]>
  • Loading branch information
patrykkopycinski and kibanamachine authored Oct 26, 2020
1 parent 046c840 commit a8d8add
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export const StatefulEditDataProvider = React.memo<Props>(
<EuiPanel paddingSize="s">
<EuiFlexGroup direction="column" gutterSize="none">
<EuiFlexItem grow={false}>
<EuiFlexGroup direction="row" gutterSize="none" justifyContent="spaceBetween">
<EuiFlexGroup gutterSize="s" direction="row" justifyContent="spaceBetween">
<EuiFlexItem grow={false}>
<EuiFormRow label={i18n.FIELD}>
<EuiComboBox
Expand Down Expand Up @@ -223,7 +223,7 @@ export const StatefulEditDataProvider = React.memo<Props>(
</EuiFlexItem>

<EuiFlexItem grow={false}>
<EuiSpacer />
<EuiSpacer size="m" />
</EuiFlexItem>

{type !== DataProviderType.template &&
Expand All @@ -245,7 +245,7 @@ export const StatefulEditDataProvider = React.memo<Props>(
) : null}

<EuiFlexItem grow={false}>
<EuiSpacer />
<EuiSpacer size="m" />
</EuiFlexItem>

<EuiFlexItem grow={false}>
Expand All @@ -265,7 +265,7 @@ export const StatefulEditDataProvider = React.memo<Props>(
}) || isValueFieldInvalid
}
onClick={handleSave}
size="s"
size="m"
>
{i18n.SAVE}
</EuiButton>
Expand Down

0 comments on commit a8d8add

Please sign in to comment.