Skip to content

Commit 37f3035

Browse files
committed
Fix page layouts, clean up unused code (#63992)
1 parent d068447 commit 37f3035

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

x-pack/plugins/ingest_manager/public/applications/ingest_manager/layouts/default.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ interface Props {
2020
const Container = styled.div`
2121
min-height: calc(100vh - ${props => props.theme.eui.euiHeaderChildSize});
2222
background: ${props => props.theme.eui.euiColorEmptyShade};
23-
display: flex;
24-
flex-direction: column;
2523
`;
2624

2725
const Nav = styled.nav`

x-pack/plugins/ingest_manager/public/applications/ingest_manager/layouts/with_header.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ import { Header, HeaderProps } from '../components';
1010

1111
const Page = styled(EuiPage)`
1212
background: ${props => props.theme.eui.euiColorEmptyShade};
13-
flex: 1;
14-
align-items: flex-start;
1513
`;
1614

1715
interface Props extends HeaderProps {

x-pack/plugins/ingest_manager/public/applications/ingest_manager/layouts/without_header.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ import { EuiPage, EuiPageBody, EuiSpacer } from '@elastic/eui';
99

1010
const Page = styled(EuiPage)`
1111
background: ${props => props.theme.eui.euiColorEmptyShade};
12-
flex: 1;
13-
align-items: flex-start;
1412
`;
1513

1614
interface Props {

0 commit comments

Comments
 (0)