-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix wishlist overview when text is to long (#29)
- Loading branch information
1 parent
e674ff8
commit c656a9f
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |