mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Fix bug with UI Framework background height not expanding to fit content. (#11880)
This commit is contained in:
parent
4fb18dac71
commit
bb89e1739b
1 changed files with 5 additions and 1 deletions
|
@ -22,9 +22,13 @@ body {
|
|||
min-width: $guideMinWidth;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Expand container to fit the page if the content is shorter than the page, or expand with the
|
||||
* content if it's taller than the page.
|
||||
*/
|
||||
.guide {
|
||||
display: flex;
|
||||
height: 100%;
|
||||
min-height: 100%; /* 1 */
|
||||
}
|
||||
|
||||
.guideContent {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue