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

Fix sizing of large logo

This commit is contained in:
Hillel Coren 2016-04-13 18:49:39 +03:00
parent 8550543089
commit 80c77adf03

View File

@ -52,7 +52,7 @@
<div class="col-lg-4 col-sm-4"></div>
<div class="col-lg-8 col-sm-8">
<a href="{{ $account->getLogoUrl().'?no_cache='.time() }}" target="_blank">
{!! HTML::image($account->getLogoUrl().'?no_cache='.time(), 'Logo', ['max-width' => 200]) !!}
{!! HTML::image($account->getLogoUrl().'?no_cache='.time(), 'Logo', ['style' => 'max-width:300px']) !!}
</a> &nbsp;
<a href="#" onclick="deleteLogo()">{{ trans('texts.remove_logo') }}</a>
</div>