Fix issue with too much padding in comment input box

This commit is contained in:
Umar Bolatov 2021-11-14 16:18:59 -08:00
parent a277072968
commit b366e5dbf7
No known key found for this signature in database
GPG Key ID: 2C1F9AEB371D2A28

View File

@ -231,7 +231,7 @@
asp-route-walletId="@Context.GetRouteValue("walletId")">
<input type="hidden" name="transactionId" value="@transaction.Id"/>
<div class="input-group p-2">
<textarea name="addcomment" maxlength="200" rows="2" cols="20" class="form-control form-control-sm">@transaction.Comment</textarea>
<textarea name="addcomment" maxlength="200" rows="2" cols="20" class="form-control form-control-sm p-1">@transaction.Comment</textarea>
</div>
<div class="p-2">
<button type="submit" class="btn btn-primary btn-sm">Save comment</button>