Is there a way to add a small space between input fields without using tables, as shown in the Angular Material example below?
<div class="content pt10" fxLayout="row" fxLayout.xs="column" fxFlexFill>
<div fxFlex="50">
<mat-form-field class="example-full-width">
<input matInput type="text" placeholder="Test1">
</mat-form-field>
</div>
<div fxFlex="50">
<mat-form-field class="example-full-width">
<input matInput type="text" placeholder=" Test2">
</mat-form-field>
</div>
</div>