Background color of ChildElement End

Hello,

I have a Radzen Formfield in which I have changed the background color:

Is it not possible to change the background color of the "End":
image

Adding background color style to the button gives (white around button):
image

Adding style to the tag yields an error.

The FormField background inherits the inputs' background color. You can change it via the --rz-input-background-color CSS variable.

  1. Add a CSS class
<RadzenFormField Class="my-form-field">
  1. Set the background via CSS
.my-form-field {
    --rz-input-background-color: #feff003d;
}

Or add it directly via style:

<RadzenFormField style="--rz-input-background-color: #feff003d;">

That indeed did the trick thank you for your quick response!