1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 05:02:36 +01:00

add css selector for client portal logo

This commit is contained in:
David Bomba 2024-03-22 08:52:23 +11:00
parent e8f9577bb8
commit 429c143c89
2 changed files with 3 additions and 1 deletions

View File

@ -5268,6 +5268,8 @@ $lang = array(
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'show_table_footer' => 'Show table footer',
'show_table_footer_help' => 'Displays the totals in the footer of the table',
);
return $lang;

View File

@ -2,7 +2,7 @@
<div class="flex flex-col w-64">
<div class="flex items-center h-16 flex-shrink-0 px-4 bg-white border-r justify-center z-10">
<a href="{{ route('client.dashboard') }}">
<img class="h-10 w-auto" src="{!! auth()->guard('contact')->user()->company->present()->logo($settings) !!}"
<img class="h-10 w-auto sidebar_logo_override" src="{!! auth()->guard('contact')->user()->company->present()->logo($settings) !!}"
alt="{{ auth()->guard('contact')->user()->company->present()->name() }} logo"/>
</a>
</div>