Fix invoice designs flex orientation/direction (#3349)

* Fix invoice designs flex orientation

* Plain template fix
This commit is contained in:
Benjamin Beganović 2020-02-18 21:52:38 +01:00 committed by GitHub
parent 0690d615dd
commit 961788e59f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -58,7 +58,7 @@ class Business extends AbstractDesign
<div class="flex items-center justify-between mt-24">
<div class="w-1/2 flex flex-col">
<span>$invoice_issued_to_label</span>
<section class="text-orange-600 mt-2">
<section class="flex flex-col text-orange-600 mt-2">
$client_details
</section>
</div>

View File

@ -43,7 +43,7 @@ class Clean extends AbstractDesign
<div class="mr-10 text-gray-600 flex flex-col">
$company_details
</div>
<div classs="text-gray-600">
<div classs="text-gray-600 flex flex-col">
$company_address
</div>
</div>

View File

@ -46,10 +46,10 @@ class Plain extends AbstractDesign
<div class="w-1/3 flex flex-col">
<div class="h-14">$company_logo</div>
<div class="flex px-3 mt-6">
<section class="w-1/2">
<section class="w-1/2 flex flex-col">
$invoice_details_labels
</section>
<section class="text-right">
<section class="flex flex-col">
$invoice_details
</section>
</div>