all list pages updated same height

This commit is contained in:
batuhanbas
2020-02-09 16:06:06 +03:00
parent 04af057194
commit c46ab7b14f
11 changed files with 44 additions and 26 deletions

View File

@ -12,7 +12,7 @@
</thead>
<tbody class="thead-light">
@foreach($accounts as $item)
<tr class="row border-top-1">
<tr class="row border-top-1 tr-py">
<td class="col-xs-6 col-md-6 text-left">{{ $item->name }}</td>
<td class="col-xs-6 col-md-6 text-right">@money($item->balance, $item->currency_code, true)</td>
</tr>

View File

@ -14,7 +14,7 @@
<tbody>
@if ($transactions->count())
@foreach($transactions as $item)
<tr class="row border-top-1">
<tr class="row border-top-1 tr-py">
<td class="col-xs-4 col-md-4 text-left">@date($item->paid_at)</td>
<td class="col-xs-4 col-md-4 text-left">{{ $item->category->name }}</td>
<td class="col-xs-4 col-md-4 text-right">@money($item->amount, $item->currency_code, true)</td>
@ -23,7 +23,7 @@
@else
<tr class="border-top-1">
<td colspan="3">
<div class="text-muted" id="datatable-basic_info" role="status" aria-live="polite">
<div class="text-muted nr-py" id="datatable-basic_info" role="status" aria-live="polite">
{{ trans('general.no_records') }}
</div>
</td>

View File

@ -14,7 +14,7 @@
<tbody>
@if ($transactions->count())
@foreach($transactions as $item)
<tr class="row border-top-1">
<tr class="row border-top-1 tr-py">
<td class="col-xs-4 col-md-4 text-left">@date($item->paid_at)</td>
<td class="col-xs-4 col-md-4 text-left">{{ $item->category->name }}</td>
<td class="col-xs-4 col-md-4 text-right">@money($item->amount, $item->currency_code, true)</td>
@ -23,7 +23,7 @@
@else
<tr class="border-top-1">
<td colspan="3">
<div class="text-muted" id="datatable-basic_info" role="status" aria-live="polite">
<div class="text-muted nr-py" id="datatable-basic_info" role="status" aria-live="polite">
{{ trans('general.no_records') }}
</div>
</td>