Skip to content

Commit

Permalink
Improve layout for mobile browsers
Browse files Browse the repository at this point in the history
  • Loading branch information
gergoabraham committed Sep 30, 2022
1 parent 9eb4ed0 commit 76cca8a
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const EndpointPolicyCreateMultiStepExtension = memo(() => {
<MediumCustomSpacer />

<EuiFlexGroup>
<EuiFlexItem grow={false}>
<EuiFlexItem grow={false} style={{ alignItems: 'center' }}>
<LargeSecurityLogo />
</EuiFlexItem>

Expand All @@ -33,15 +33,15 @@ export const EndpointPolicyCreateMultiStepExtension = memo(() => {
</EuiFlexGroup>

<MediumCustomSpacer />

<Details />
<LargeCustomSpacer />
</Container>
);
});
EndpointPolicyCreateMultiStepExtension.displayName = 'EndpointPolicyCreateMultiStepExtension';

const Container = styled('div')`
width: 820px;
padding: 0 23px;
`;

const Title = () => (
Expand Down Expand Up @@ -74,7 +74,7 @@ const LargeSecurityLogo = () => (
);

const Features = () => (
<EuiFlexGroup alignItems="center" gutterSize="s">
<EuiFlexGroup alignItems="center" gutterSize="s" responsive={false}>
<EuiFlexItem grow={false}>
<EuiIcon type="check" />
</EuiFlexItem>
Expand Down

0 comments on commit 76cca8a

Please sign in to comment.