Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
patrykkopycinski committed Oct 12, 2020
1 parent 0edc73b commit 4f03cf4
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@ import styled from 'styled-components';
import { CommonProps } from '@elastic/eui';

import { useFullScreen } from '../../containers/use_full_screen';
import { useKibana } from '../../lib/kibana';
import { gutterTimeline } from '../../lib/helpers';
import { AppGlobalStyle } from '../page/index';

const Wrapper = styled.div`
padding: ${({ theme }) => `${theme.eui.paddingSizes.l}`};
padding: ${(props) => `${props.theme.eui.paddingSizes.l}`};
&.siemWrapperPage--fullHeight {
height: 100%;
Expand All @@ -38,12 +37,6 @@ const Wrapper = styled.div`

Wrapper.displayName = 'Wrapper';

const BannersWrapper = styled.div`
> div {
padding: 0 0 ${({ theme }) => `${theme.eui.paddingSizes.l}`} 0;
}
`;

interface WrapperPageProps {
children: React.ReactNode;
restrictWidth?: boolean | number | string;
Expand Down

0 comments on commit 4f03cf4

Please sign in to comment.