How do I set the background on the dropdown?
<div class="container">
<div class="row justify-content-md-end text-light gsi-background-color-darkgray">
<div class="col">
</div>
<div class="col-md-auto">
<TelerikMenu Data="MenuItems"
OnClick="@((TelerikMenuItem item) => OnMenuClicked(item))">
</TelerikMenu>
</div>
</div>
</div>
public class TelerikMenuItem
{
public string Text { get; set; }
public bool Disabled { get; set; }
public bool Separator { get; set; }
public string Url { get; set; }
public IEnumerable<TelerikMenuItem> Items { get; set; }
}