Minor styling fix

This commit is contained in:
Hillel Coren 2015-01-22 15:36:16 +02:00
parent 8d13091e86
commit b362380615
3 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@
<img src="{{ asset('images/totalincome.png') }}" class="in-image"/> <img src="{{ asset('images/totalincome.png') }}" class="in-image"/>
<div class="in-bold"> <div class="in-bold">
@foreach ($totalIncomes as $totalIncome) @foreach ($totalIncomes as $totalIncome)
{{ Utils::formatMoney($totalIncome->value, $totalIncome->currency_id); }} {{ Utils::formatMoney($totalIncome->value, $totalIncome->currency_id); }}<br/>
@endforeach @endforeach
</div> </div>
<div class="in-thin"> <div class="in-thin">
@ -143,7 +143,7 @@
<div><b>{{ trans('texts.average_invoice') }}</b></div> <div><b>{{ trans('texts.average_invoice') }}</b></div>
<div class="in-bold in-white" style="font-size:42px"> <div class="in-bold in-white" style="font-size:42px">
@foreach ($totalIncomes as $totalIncome) @foreach ($totalIncomes as $totalIncome)
{{ Utils::formatMoney($totalIncome->invoice_avg, $totalIncome->currency_id); }} {{ Utils::formatMoney($totalIncome->invoice_avg, $totalIncome->currency_id); }}<br/>
@endforeach @endforeach
</div> </div>
</div> </div>

View File

@ -2571,7 +2571,7 @@ background-clip: padding-box;
.average-invoice { .average-invoice {
background-color: #ecd817; background-color: #ecd817;
height: 200px; min-height: 200px;
padding-top: 60px; padding-top: 60px;
text-align: center; text-align: center;
} }

View File

@ -463,7 +463,7 @@ background-clip: padding-box;
.average-invoice { .average-invoice {
background-color: #ecd817; background-color: #ecd817;
height: 200px; min-height: 200px;
padding-top: 60px; padding-top: 60px;
text-align: center; text-align: center;
} }