Skip to content

Commit 6d4bc6b

Browse files
committed
fix invoice width
1 parent 0db2c87 commit 6d4bc6b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

resources/views/default/invoice.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
<table class="mb-6 w-full">
7676
<tbody>
7777
<tr>
78-
<td class="p-0 align-top" width="50%">
78+
<td class="p-0 align-top" width="33%">
7979
@php
8080
$name = $invoice->seller->name;
8181
$street = $invoice->seller->address->street;
@@ -138,7 +138,7 @@
138138
</p>
139139
@endforeach
140140
</td>
141-
<td class="p-0 align-top" width="50%">
141+
<td class="p-0 align-top" width="33%">
142142
@php
143143
$name = $invoice->buyer->name;
144144
$street = $invoice->buyer->address?->street;
@@ -203,7 +203,7 @@
203203
</td>
204204

205205
@if ($invoice->buyer->shipping_address)
206-
<td class="p-0 align-top" width="50%">
206+
<td class="p-0 align-top" width="33%">
207207
@php
208208
$name = $invoice->buyer->shipping_address->name;
209209
$street = $invoice->buyer->shipping_address->street;

0 commit comments

Comments
 (0)