Persona Menu won't overlay a header. #1774
Replies: 3 comments
-
The header class sets a z-index to 10, The menu z-index is set to 9999. If I manually set the z-index to auto I can get it to work as expected. |
Beta Was this translation helpful? Give feedback.
-
Could you give us more details? An example of code? I'm using this sample and the result seems correct. <FluentButton Id="btnOpen1" OnClick="@(() => open = !open)">
Open menu
</FluentButton>
<FluentMenu Anchor="btnOpen1" @bind-Open="open">
<FluentMenuItem>Menu item 1</FluentMenuItem>
<FluentMenuItem>Menu item 2</FluentMenuItem>
</FluentMenu>
<FluentHeader>
Header text
</FluentHeader>
@code {
bool open = false;
} |
Beta Was this translation helpful? Give feedback.
-
I'm trying to make a reproducible demo. Seems it only breaks in my app. Will get you a version at my earliest convenience. |
Beta Was this translation helpful? Give feedback.
-
I can't get my Menu to overlay a Fluent Header.
Using a div it works as expected.
So trying to figure out what it is about a header.
This issue looks similar #1548
Beta Was this translation helpful? Give feedback.
All reactions