Developing a Kibana plugin, and have a 3rd header layer in the page. When I set-up a button in the EuiHeader to open a EuiCollapsibleNav, the overlay covers the nav element and nothing is selectable. Here is a slice of the code, and gif of the issue.
<EuiHeader
theme='default'
sections={[
{
items: [
<EuiCollapsibleNav
isOpen={navIsOpen}
isDocked={navIsDocked}
button={
<EuiHeaderSectionItem border="right">
<EuiHeaderSectionItemButton
aria-controls={keypadId}
aria-expanded={navIsOpen}
aria-label="App navigation"
onClick={onMenuButtonClick}>
<EuiIcon type="apps" size="m" />
</EuiHeaderSectionItemButton>
</EuiHeaderSectionItem>
}
onClose={() => setNavIsOpen(false)}>
<div style={{ padding: 16 }}>
<EuiTitle>
<h2>I am some nav</h2>
</EuiTitle>
<EuiSpacer />
<EuiButton
onClick={() => {
setNavIsDocked(!navIsDocked);
}}>
Docked: {navIsDocked ? 'on' : 'off'}
</EuiButton>
</div>
</EuiCollapsibleNav>,
...
Thanks for the help.