Radzen has a datepicker for Blazor that looks promising. The code below displays it on my webassembly blazor page, however, I do not know how to control the font size with the Radzen component. I have tried adding height to the div, tried adding font-size to the div as well as the RadzenDatePicker style string. Nothing seems to change the rendered font size. If I inspect the resulting page.... I see the html that Radzen creates and I can adjust it there but not in my razor page. Any help appreciated.
<div class="rz-p-0 rz-text-align-center">
<RadzenDatePicker @bind-Value=@value ShowTime="false" HourFormat="12" Style="height:1.5vh;width:30%;" DateFormat="MM/dd/yyyy" />
</div>
@code {
DateTime? value = DateTime.Now;
}