<mat-form-field class="new-inputs" style="border-radius: 10px;">
<mat-label>Ime</mat-label>
<input matInput type="text" maxlength="15" id="firstName" formControlName="firstName" required
[class.ng-invalid]="userData.get('firstName')?.invalid && userData.get('firstName')?.touched"
[class.ng-touched]="userData.get('firstName')?.touched">
<!-- <input matInput style="font-weight: normal">-->
</mat-form-field>
I’m struggling to modify the border-radius of the mat-form-field, despite my efforts. I’m currently using the standard mat-form-field without appearance taken into account. Unsure if this is contributing to the issue. The existing form field does not meet design standards and must be updated.
If I make changes using the F12 console, the border radius does adjust. However, outside of that method, I’ve only been successful in altering the placeholder font weight to normal and adjusting the background color (although this poses some minor issues). I attempted to use ng-deep, but it appears to have been deprecated.