[Fleet] fix for bottom bar hiding content (#119133)

* fix for bottom bar hiding content

* using euiBreakpoints
This commit is contained in:
Julia Bardi 2021-11-19 17:33:41 +01:00 committed by GitHub
parent 55fa55ddc9
commit 57ee040089
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -60,6 +60,11 @@ const StepsWithLessPadding = styled(EuiSteps)`
.euiStep__content {
padding-bottom: ${(props) => props.theme.eui.paddingSizes.m};
}
// compensating for EuiBottomBar hiding the content
@media (max-width: ${(props) => props.theme.eui.euiBreakpoints.m}) {
margin-bottom: 100px;
}
`;
const CustomEuiBottomBar = styled(EuiBottomBar)`