mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Fix KibanaPageTemplate.BottomBar in serverless (#168235)
## Summary
The latest changes applied [here
](https://github.com/elastic/kibana/pull/166840) caused the
`KibanaPageTemplate.BottomBar` to not work properly:

The `margin-left` should be applied only to `.euiBottomBar--fixed`
instead of all `.euiBottomBar`, `--sticky` and `--static` are already
positioned correctly to the relative parent, so no margin needs to be
applied.
This commit is contained in:
parent
653cfb2e9b
commit
0a2148f854
1 changed files with 2 additions and 2 deletions
|
@ -26,8 +26,8 @@
|
|||
margin-left: 320px; // Hard-coded for now -- @cchaos
|
||||
}
|
||||
|
||||
// Add support for serverless nabbar
|
||||
.euiBody--hasFlyout .euiBottomBar {
|
||||
// Add support for serverless navbar
|
||||
.euiBody--hasFlyout .euiBottomBar--fixed {
|
||||
margin-left: var(--euiCollapsibleNavOffset, 0);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue