Skip to content
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ const TimelineBody = styled.div`
height: 100%;
display: flex;
flex-direction: column;
@media (max-width: 767px) {
height: fit-content;
min-height: 400px;
}
`;

export interface Props {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export const TimelineContainer = styled.div.attrs(({ className = '' }) => ({
display: flex;
flex-direction: column;
position: relative;
overflow: scroll;
`;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export const StyledEuiFlyoutHeader = styled(EuiFlyoutHeader)`
display: flex;
flex-direction: column;
padding: 0;
overflow: scroll;

&.euiFlyoutHeader {
${({ theme }) => `padding: ${theme.eui.euiSizeS} 0 0 0;`}
Expand Down
Loading