Skip to content

Commit d55db77

Browse files
committed
Updates default template
1 parent 88b90e7 commit d55db77

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

resources/views/templates/default.blade.php

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
body, h1, h2, h3, h4, h5, h6, table, th, tr, td, p, div {
2121
line-height: 1.1;
2222
}
23+
.party-header {
24+
font-size: 1.5rem;
25+
font-weight: 400;
26+
}
2327
.total-amount {
2428
font-size: 12px;
2529
font-weight: 700;
@@ -52,12 +56,12 @@
5256
<table class="table">
5357
<thead>
5458
<tr>
55-
<th class="border-0 pl-0" width="48.5%">
56-
<h2>{{ __('invoices::invoice.seller') }}</h2>
59+
<th class="border-0 pl-0 party-header" width="48.5%">
60+
{{ __('invoices::invoice.seller') }}
5761
</th>
5862
<th class="border-0" width="3%"></th>
59-
<th class="border-0 pl-0">
60-
<h2>{{ __('invoices::invoice.buyer') }}</h2>
63+
<th class="border-0 pl-0 party-header">
64+
{{ __('invoices::invoice.buyer') }}
6165
</th>
6266
</tr>
6367
</thead>
@@ -183,6 +187,7 @@
183187
{{ $invoice->formatCurrency($item->tax) }}
184188
</td>
185189
@endif
190+
186191
<td class="text-right pr-0">
187192
{{ $invoice->formatCurrency($item->sub_total_price) }}
188193
</td>

0 commit comments

Comments
 (0)