Dear Syncfusion,
I have a request to remove a UI displacement while loading a page when a context menu is present.
Very briefly (a fraction of a second) the location of the context menu expands to about 10 - 15px and then contracts again. The effect is that the div underneath is visibly pushed down and then dragged up
To reproduce just try running the following in Chrome
```
@using Syncfusion.Blazor.Navigations
<div style="background-color:blue">
<button id="target2" style="height:30px">... right click</button>
<SfContextMenu Target="#target2" Items="@MenuItems">
</SfContextMenu>
</div>
<div style="height:300px; background-color:red"></div>
@code{
public List<MenuItem> MenuItems = new List<MenuItem>
{
new MenuItem{ Text="context_item1"},
new MenuItem{ Text="context_item2"}
};
}
```