[Maps] fix panel cuttoff in K7 design (#29209)

This commit is contained in:
Nathan Reese 2019-01-23 15:57:26 -07:00 committed by GitHub
parent 45a4d3bce0
commit 76212da436
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,11 +1,19 @@
@import '@elastic/eui/src/components/header/variables';
#gis-plugin {
display: flex;
flex-direction: column;
height: 100vh;
height: calc(100vh - #{$euiHeaderChildSize});
width: 100%;
overflow: hidden;
}
@include euiBreakpoint('xs') {
#gis-plugin {
height: calc(100vh - #{$euiHeaderChildSizeMobile});
}
}
#react-gis-root {
flex-grow: 1;
display: flex;