Currently, I am utilizing Blazorise along with Bootstrap 5, however, I have noticed that the spacing between the input field and the label is too wide.
Here is an illustration of the space between the input and the label:
Is there a way for me to reduce this gap?
<Row>
<Column ColumnSize="ColumnSize.Is2.OnTablet.Is1.OnFullHD">
<Tooltip Text="End Date" Placement="TooltipPlacement.Top">
<FieldLabel TextColor="TextColor.Secondary">Start</FieldLabel>
<DateEdit Style="width:150px" TextColor="TextColor.Primary" TValue="DateTime?" @bind-Date=Agenda.PeriodoInicial />
</Tooltip>
</Column>
<Column ColumnSize="ColumnSize.Is2.OnTablet.Is1.OnFullHD">
<Tooltip Text="End Date" Placement="TooltipPlacement.Top">
<FieldLabel TextColor="TextColor.Secondary">End</FieldLabel>
<DateEdit Style="width:150px" TextColor="TextColor.Primary" TValue="DateTime?" @bind-Date=Agenda.PeriodoFinal />
</Tooltip>
</Column>
<Column ColumnSize="ColumnSize.Is8.OnTablet" Class="form-check-inline">
<FieldLabel TextColor="TextColor.Secondary">Period</FieldLabel>
<RadioGroup TextColor="TextColor.Secondary" Orientation="Orientation.Horizontal" TValue="int" Name="tipoPeriodo" @bind-CheckedValue=Agenda.TipoPeriodo>
<Radio TextColor="TextColor.Primary" Inline="true" Value=0>Start Date</Radio>
<Radio TextColor="TextColor.Secondary" Inline="true" Value=1>Release Date</Radio>
</RadioGroup>
</Column>
</Row>