Skip to content

Commit

Permalink
Fix wishlist overview when text is to long (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
Roene-JustBetter authored Apr 11, 2024
1 parent e674ff8 commit c656a9f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions resources/views/account/partials/list-item.blade.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<a class="flex items-center gap-x-7 bg-white rounded border pb-5 pt-4 px-7 hover:opacity-75" :href="'{{ route('wishlist.show', '') }}/'+wishlist.id">
<x-heroicon-s-heart class="w-5 h-5 text-ct-wishlist" />
<a class="flex items-start gap-x-7 bg-white rounded border pb-5 pt-4 px-7 hover:opacity-75" :href="'{{ route('wishlist.show', '') }}/'+wishlist.id">
<x-heroicon-s-heart class="w-5 h-5 text-ct-wishlist mt-1.5" />
<div class="flex flex-col">
<div class="w-full text-base font-medium text-ct-neutral">@lang('Number of articles') (@{{ wishlist.items.length }})</div>
<div class="w-full text-sm truncate text-ct-inactive">@{{ wishlist.description }}</div>
<div class="w-full text-sm text-ct-inactive max-w-48 max-md:truncate md:max-w-3xl">@{{ wishlist.description }}</div>
</div>
</a>
</a>

0 comments on commit c656a9f

Please sign in to comment.