RadzenContentContainer

Hi,

I have my @Body content inside a RadzenContentContainer component:

RadzenLayout
  RadzenBody
    ChildContent
      RadzenContentContainer
        @Body

No additional formatting was ever needed to provide some nice padding around the body.

All of a sudden, in the last release or so, my body content is right up against the container.

Was this by design? How should I add some padding?

Thanks,
Mike

Hi @sys_mike,

Can you try CTRL-F5 or incognito mode of the browser to see if this is not a cache issue?

Looks like it's a regression. Fixing it with the next radzen.blazor version.

Until then this CSS should fix the padding:

:root {
    --rz-layout-body-padding: 1rem;
}

Looks great again, thank you!

In case anyone isn't already aware - Radzen is awesome!!

Mike