Extra space on top of the RadzensWith

Here's the code snippet:

<div class="col-2 p-0" style="background-color:aquamarine">
        <div Style="background-color:salmon">Core Only</div>
        <RadzenSwitch 
          id="core_only" 
          Style="background-color:blanchedalmond"></RadzenSwitch>
      </div>

Here's what is rendered:
image

Is there a way to get rid of the vertical space between the div and RadzenSwitch?

Thanks!

Hi @jwu,

Try adding the following CSS to your application:

.rz-helper-hidden-accessible {
    overflow: visible !important;
}