Skip to content

Commit c4ca24b

Browse files
committed
ui improvements
1 parent 18ed6db commit c4ca24b

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

apps/Desktop/Views/Home.twig

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,20 @@
1515
{% endif %}
1616
<div class="m-8 dark:text-white">
1717
<h1 class="app-main-title">{{ translate('Welcome') }}, {{ user.first_name ?? user.email }}</h1>
18-
<div class="flex gap-2">
18+
<div class="flex">
1919
{% if user.photo %}
20-
<div>
20+
<div class="mr-8">
2121
<img
2222
src="{{ config.uploadUrl }}/{{ user.photo }}"
23-
class='max-w-24 max-h-24 rounded-xl'
23+
class='max-w-48 max-h-24 rounded-4xl'
2424
/>
2525
</div>
2626
{% endif %}
2727
<div>
28+
<div><b>{{ user.first_name }} {{ user.last_name }}</b></div>
2829
<div><b>{{ user.DEFAULT_COMPANY.name }}</b></div>
2930
<div class="badge">{{ user.position }}</div>
30-
<div>{{ user.email }}</div>
31+
<div class="mt-2">{{ user.email }}</div>
3132
<div><a href="settings/my-account" class="text-primary">{{ translate('Edit profile') }}</a></div>
3233
</div>
3334
</div>

0 commit comments

Comments
 (0)