We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a3db2c commit 501fe48Copy full SHA for 501fe48
1 file changed
src/core/public/rendering/_base.scss
@@ -73,7 +73,10 @@
73
display: flex;
74
flex-flow: column nowrap;
75
margin: 0 auto;
76
- min-height: calc(100vh - #{$euiHeaderHeightCompensation});
+ // IE needs this to be "height" instead of "min-height"
77
+ // "min-height" causes a bug described in the next link
78
+ // https://github.com/philipwalton/flexbugs#3-min-height-on-a-flex-container-wont-apply-to-its-flex-items
79
+ height: calc(100vh - #{$euiHeaderHeightCompensation});
80
81
&.hidden-chrome {
82
min-height: 100vh;
0 commit comments