Fix bug with UI Framework background height not expanding to fit content. (#11880)

This commit is contained in:
CJ Cenizal 2017-05-17 13:07:50 -07:00
parent 4fb18dac71
commit bb89e1739b

View file

@ -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 {