Why are my radzen buttons all capitalized?

Hi, I am using radzen blazor server side on my .net 6 project, I followed all instructions to install radzen:
Install package
Import namespace
Include theme:
Include script:

Then i used a radzen button component


@code{
string text = "Hi Hi hello hey hi init";
}

Why is all my text uppercased?

image

Because you are using the Material theme and the material specification uses capital text for buttons.

Oh I see, thank you for that, how am I able to change this behaviour so that it does not capitalize every button?

You can either use a different theme or this css:

.rz-button {
   text-transform: none !important;
}