Skip to content

Commit 05120f3

Browse files
committed
Fix collapsing add address button in example templates
1 parent 59e4a29 commit 05120f3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

example-templates/dist/shop/_private/address/list.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
</div>
6363
{% endfor %}
6464
{% if showAdd %}
65-
<a href="{{ addUrl }}" class="block rounded-lg border border-gray-200 bg-white hover:shadow-md w-full relative">
65+
<a href="{{ addUrl }}" class="block rounded-lg border border-gray-200 bg-white hover:shadow-md w-full relative" style="min-height: 100px;">
6666
<div class="absolute top-0 left-0 right-0 bottom-0 flex items-center">
6767
<div class="flex items-center justify-center h-full p-4 w-full group">
6868
<span class="group-hover:underline">Add Address</span>

example-templates/src/shop/_private/address/list.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
</div>
6363
{% endfor %}
6464
{% if showAdd %}
65-
<a href="{{ addUrl }}" class="block rounded-lg border border-gray-200 bg-white hover:shadow-md w-full relative">
65+
<a href="{{ addUrl }}" class="block rounded-lg border border-gray-200 bg-white hover:shadow-md w-full relative" style="min-height: 100px;">
6666
<div class="absolute top-0 left-0 right-0 bottom-0 flex items-center">
6767
<div class="flex items-center justify-center h-full p-4 w-full group">
6868
<span class="group-hover:underline">Add Address</span>

0 commit comments

Comments
 (0)