I have the following code. Currently it renders menus in Orange color by default. How to customize the item color to WHITE and make it BOLD?
<div style="width: 100%; margin: 0 auto; background-color:gray;">
<TelerikMenu Data="@MenuItems" Class="centered-menu"
UrlField="@nameof(MenuItem.Page)"
ItemsField="@nameof(MenuItem.SubSectionList)"
TextField="@nameof(MenuItem.Section)">
</TelerikMenu>
</div>
My CSS:
.k-menu.centered-menu, ::deep .k-menu.centered-menu { justify-content: center; }
It renders: