I have a table with WTForms fields on each row. I can't seem to make the row height smaller in anyway.
It works when using regular html input tag but not with these WTForms StringFields. Any idea how to do this?
Thank you!
<table class="table table-hover table-sm table-striped">
<thead class="thead-dark" align="center">
<tr>
<th colspan="2">Contact info</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{ render_field(form.company, size=40) }}</td>
</tr>
</tbody>
</table>
question from:https://stackoverflow.com/questions/65945833/flask-wtforms-adjusting-field-height-when-using-inside-table