mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[Fleet] fix for bottom bar hiding content (#119133)
* fix for bottom bar hiding content * using euiBreakpoints
This commit is contained in:
parent
55fa55ddc9
commit
57ee040089
1 changed files with 5 additions and 0 deletions
|
@ -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)`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue