Merge pull request #2998 from mervekaraman/master

Description is overflowing in App modal
This commit is contained in:
Cüneyt Şentürk 2023-07-03 17:21:18 +03:00 committed by GitHub
commit f040a95118
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@
@if ($popular) @if ($popular)
<div class="flex flex-col gap-4"> <div class="flex flex-col gap-4">
@foreach ($popular->data as $item) @foreach ($popular->data as $item)
<div class="hover:shadow-2xl rounded-lg"> <div class="hover:bg-purple-100 rounded-lg">
<x-link href="{{ route('apps.app.show', $item->slug) }}" class="flex items-center p-2" override="class"> <x-link href="{{ route('apps.app.show', $item->slug) }}" class="flex items-center p-2" override="class">
@foreach ($item->files as $file) @foreach ($item->files as $file)
@if (($file->media_type == 'image') && ($file->pivot->zone == 'thumbnail')) @if (($file->media_type == 'image') && ($file->pivot->zone == 'thumbnail'))
@ -44,7 +44,7 @@
{!! $item->name !!} {!! $item->name !!}
</h6> </h6>
<div class="line-clamp-2"> <div class="line-clamp-2 h-12 overflow-hidden">
<p class="font-thin text-xs text-left"> <p class="font-thin text-xs text-left">
{!! $item->description !!} {!! $item->description !!}
</p> </p>