mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
Merge pull request #6915 from beganovich/jira-596
Hide client name on small devices
This commit is contained in:
commit
b6c3eb4bcd
@ -38,7 +38,7 @@
|
|||||||
<button data-ref="client-profile-dropdown" @click="open = !open"
|
<button data-ref="client-profile-dropdown" @click="open = !open"
|
||||||
class="max-w-xs flex items-center text-sm rounded-full focus:outline-none focus:shadow-outline">
|
class="max-w-xs flex items-center text-sm rounded-full focus:outline-none focus:shadow-outline">
|
||||||
<img class="h-8 w-8 rounded-full" src="{{ auth('contact')->user()->avatar() }}" alt=""/>
|
<img class="h-8 w-8 rounded-full" src="{{ auth('contact')->user()->avatar() }}" alt=""/>
|
||||||
<span class="ml-2">{{ auth('contact')->user()->present()->name() }}</span>
|
<span class="ml-2 hidden sm:block">{{ auth('contact')->user()->present()->name() }}</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div x-show="open" style="display:none;" x-transition:enter="transition ease-out duration-100"
|
<div x-show="open" style="display:none;" x-transition:enter="transition ease-out duration-100"
|
||||||
|
Loading…
Reference in New Issue
Block a user