RadzenDropDown Font Size

I set the Style and the Font-Size on the selection changes but not the font size on the values in the list as seen here:
dropdown

Here is the mark up:
<RadzenDropDown Style="font-size: 10px;" AllowClear="true" AllowFiltering="true" FilterCaseSensitivity="FilterCaseSensitivity.CaseInsensitive"
@bind-Value=@bariatricSelection Multiple="true" TextProperty="Text" ValueProperty="ID" Data="facilityBariatric" />

How do I get the font size of the values in the list to change?

Thanks

Change it in the .css:

.rz-dropdown-item, .rz-menuitem, .rz-autocomplete-list-item, .rz-multiselect-item, .rz-dropdown-items li, .rz-autocomplete-items li, .rz-multiselect-items li {
  font-size: 0.75rem;
}
1 Like