Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/unfold/templates/unfold/helpers/add_link.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
{% endif %}

{% if add_url %}
<div class="flex flex-row items-center">
<a href="{% add_preserved_filters add_url is_popup to_field %}" class="addlink bg-primary-600 flex items-center h-9 justify-center -my-1 rounded-full w-9" title="{{ title }}">
<div class="flex flex-row items-center ml-4">
<a href="{% add_preserved_filters add_url is_popup to_field %}" class="addlink bg-primary-600 flex items-center h-[38px] justify-center -my-1 rounded-full w-[38px]" title="{{ title }}">
<span class="material-symbols-outlined text-white">add</span>
</a>
</div>
Expand Down
4 changes: 3 additions & 1 deletion src/unfold/templates/unfold/helpers/navigation_user.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@


<div class="flex flex-col gap-1.5 select-none">
<div class="font-semibold leading-none text-important tracking-tight">{{ user.get_full_name }}</div>
<div class="font-semibold leading-none text-important tracking-tight">
{{ user.get_full_name|default:user.username }}
</div>

{% if user.email %}
<div class="font-normal leading-none text-subtle text-xs">{{ user.email }}</div>
Expand Down
2 changes: 0 additions & 2 deletions src/unfold/templates/unfold/helpers/tab_actions.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,5 @@
{% include "unfold/helpers/tab_action.html" with title=action.title link=action.path %}
{% endfor %}
</ul>

<span class="block bg-base-200 h-5 mx-4 w-px dark:bg-base-700"></span>
</div>
{% endif %}