Hi David,
Greetings from Syncfusion support.
Based on your shared information. The padding property added externally from the form-control class. This is the reason for you have facing the issue. We suggest you override the padding property using CssClass property.
Kindly refer the below code example.
<SfNumericTextBox CssClass="@cssClass" TValue="int?"></SfNumericTextBox>
<style>
.removePadding.form-control {
padding: 0px;
}
</style>
@code{
private string cssClass { get; set; } = "form-control removePadding";
}
|
Regards,
Sureshkumar P