Skip to content

Commit

Permalink
fix font
Browse files Browse the repository at this point in the history
  • Loading branch information
QuentinGab committed Nov 12, 2024
1 parent ddcf2bf commit ac0f65d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions resources/views/default/invoice.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -184,13 +184,15 @@
<table class="mb-5 w-full">
<thead>
<tr>
<th class="border-b py-2 pr-2 text-left">{{ __('invoices::invoice.description') }}</th>
<th class="border-b p-2 text-left">{{ __('invoices::invoice.quantity') }}</th>
<th class="border-b p-2 text-left">{{ __('invoices::invoice.unit_price') }}</th>
<th class="whitespace-nowrap border-b py-2 pr-2 text-left">
{{ __('invoices::invoice.description') }}</th>
<th class="whitespace-nowrap border-b p-2 text-left">{{ __('invoices::invoice.quantity') }}</th>
<th class="whitespace-nowrap border-b p-2 text-left">{{ __('invoices::invoice.unit_price') }}</th>
@if ($displayTaxColumn)
<th class="border-b p-2 text-left">{{ __('invoices::invoice.tax') }}</th>
<th class="whitespace-nowrap border-b p-2 text-left">{{ __('invoices::invoice.tax') }}</th>
@endif
<th class="border-b py-2 pl-2 text-right">{{ __('invoices::invoice.amount') }}</th>
<th class="whitespace-nowrap border-b py-2 pl-2 text-right">{{ __('invoices::invoice.amount') }}
</th>
</tr>
</thead>
<tbody>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/default/style.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
margin: 0;
line-height: 1.5;
tab-size: 4;
font-family: "Helvetica", "Courier", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-family: "DejaVu Sans", "Courier", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-feature-settings: normal;
font-variation-settings: normal;
}
Expand Down

0 comments on commit ac0f65d

Please sign in to comment.