fix: move buttons to top (#32111)

This commit is contained in:
Raffael Meyer 2025-04-14 19:14:43 +02:00 committed by GitHub
parent 15371ce6f8
commit a20e1284ac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 11 deletions

View file

@ -1,3 +1,9 @@
<p>
<button class="btn btn-xs btn-default btn-address">
{{ __("New Address") }}
</button>
</p>
<div class="clearfix"></div>
{% for (const addr of addr_list) { %}
<div class="address-box">
@ -37,8 +43,3 @@
<p class="text-muted small">{%= __("No address added yet.") %}</p>
{% } %}
<p>
<button class="btn btn-xs btn-default btn-address">
{{ __("New Address") }}
</button>
</p>

View file

@ -1,3 +1,9 @@
<p>
<button class="btn btn-xs btn-default btn-contact">
{{ __("New Contact") }}
</button>
</p>
<div class="clearfix"></div>
{% for (const contact of contact_list) { %}
<div class="address-box">
@ -84,9 +90,3 @@
{% if (!contact_list.length) { %}
<p class="text-muted small">{%= __("No contacts added yet.") %}</p>
{% } %}
<p>
<button class="btn btn-xs btn-default btn-contact">
{{ __("New Contact") }}
</button>
</p>