diff --git a/public/css/element.css b/public/css/element.css index 85e89145b..44836cabf 100644 --- a/public/css/element.css +++ b/public/css/element.css @@ -15538,6 +15538,9 @@ background-color: #3c3f72 !important; color: #ffffff; text-align: center; + border-bottom-left-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; + } .el-carousel__arrow diff --git a/resources/views/portal/invoices/show.blade.php b/resources/views/portal/invoices/show.blade.php index df0517638..69c206a3a 100644 --- a/resources/views/portal/invoices/show.blade.php +++ b/resources/views/portal/invoices/show.blade.php @@ -246,8 +246,10 @@ @stack($total->code . '_td_end') @else @if ($invoice->paid) - - {{ trans('invoices.paid') }}: + + + {{ trans('invoices.paid') }}: + - @money($invoice->paid, $invoice->currency_code, true) @endif diff --git a/resources/views/sales/invoices/show.blade.php b/resources/views/sales/invoices/show.blade.php index f36db98c3..2c4a2967f 100644 --- a/resources/views/sales/invoices/show.blade.php +++ b/resources/views/sales/invoices/show.blade.php @@ -426,7 +426,9 @@ @else @if ($invoice->paid) - {{ trans('invoices.paid') }}: + + {{ trans('invoices.paid') }}: + - @money($invoice->paid, $invoice->currency_code, true) @endif