Hi,
I have tried to create a top menu bar using 4 components:
<RadzenStack>
<RadzenMenu>
<RadzenProfileMenu>
<RadzenGravatar>
When I hover over the Radzen Menu Item, it does not contain the entire height of the Radzen Stack due to the Gravatar being larger in height than the menu item.
Is there any way to make the Radzen Menu take up the height of its container?
Code snippet below:
<RadzenStack Orientation="Orientation.Horizontal" JustifyContent="JustifyContent.SpaceBetween" AlignItems="AlignItems.Center" class="border-bottom border-primary">
<RadzenMenu>
<RadzenMenuItem Text="Journal Entries" Icon="menu_book">
<RadzenMenuItem Text="View Journal Entries"/>
</RadzenMenuItem>
</RadzenMenu>
<RadzenProfileMenu class="border-left border-primary">
<Template>
<RadzenGravatar Email="replaceme@gmail.com"/>
</Template>
<ChildContent>
<RadzenProfileMenuItem Text="Option 1"/>
<RadzenProfileMenuItem Text="Option 2"/>
<RadzenProfileMenuItem Text="Option 3"/>
<RadzenProfileMenuItem Text="Option 4"/>
</ChildContent>
</RadzenProfileMenu>
</RadzenStack>