Skip to content

Commit

Permalink
Fix configuration page header
Browse files Browse the repository at this point in the history
  • Loading branch information
cnasikas committed May 15, 2020
1 parent bc9e34f commit 1f6b284
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion x-pack/plugins/siem/public/cases/pages/configure_cases.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

import React, { useMemo } from 'react';
import { Redirect } from 'react-router-dom';
import styled from 'styled-components';

import { getCaseUrl } from '../../common/components/link_to';
import { useGetUrlSearch } from '../../common/components/navigation/use_get_url_search';
Expand All @@ -15,7 +16,7 @@ import { SpyRoute } from '../../common/utils/route/spy_routes';
import { navTabs } from '../../app/home/home_navigations';
import { CaseHeaderPage } from '../components/case_header_page';
import { ConfigureCases } from '../components/configure_cases';
import { WhitePageWrapper, SectionWrapper, HeaderWrapper } from '../components/wrappers';
import { WhitePageWrapper, SectionWrapper } from '../components/wrappers';
import * as i18n from './translations';

const ConfigureCasesPageComponent: React.FC = () => {
Expand All @@ -34,6 +35,10 @@ const ConfigureCasesPageComponent: React.FC = () => {
return <Redirect to={getCaseUrl(search)} />;
}

const HeaderWrapper = styled.div`
padding-top: ${({ theme }) => theme.eui.paddingSizes.l};
`;

return (
<>
<WrapperPage noPadding>
Expand Down

0 comments on commit 1f6b284

Please sign in to comment.