mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[Maps] fix panel cuttoff in K7 design (#29209)
This commit is contained in:
parent
45a4d3bce0
commit
76212da436
1 changed files with 9 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue