Skip to content

Commit

Permalink
Remove padding override
Browse files Browse the repository at this point in the history
  • Loading branch information
orhantoy committed Oct 19, 2021
1 parent 5974fcf commit 4c83fb0
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,11 @@ export const ValidationStepPanel: React.FC<ValidationStepPanelProps> = ({
action,
}) => {
const showErrorMessage = step.state === 'invalid' || step.state === 'warning';
const styleOverride = showErrorMessage ? { paddingBottom: 0 } : {};

return (
<EuiPanel
hasShadow={false}
color={domainValidationStateToPanelColor(step.state)}
style={styleOverride}
>
<EuiFlexGroup gutterSize="s" alignItems="center">
<EuiFlexItem grow={false}>
Expand Down

0 comments on commit 4c83fb0

Please sign in to comment.