Remove unused tail-content class
This commit is contained in:
parent
97cbbfc616
commit
ba782f13cf
4 changed files with 4 additions and 4 deletions
|
|
@ -21,7 +21,7 @@ const { value } = Astro.props;
|
|||
src={value.cover}
|
||||
alt={value.title}
|
||||
/>
|
||||
<div class="tile-content w-full gap-1">
|
||||
<div class="w-full gap-1">
|
||||
<Typography class="leading-5, hover:text-gray-900" variant="tile-title">
|
||||
{value.title}
|
||||
</Typography>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ const { value } = Astro.props;
|
|||
src={value.image}
|
||||
alt={value.title}
|
||||
/>
|
||||
<div class="tile-content gap-1">
|
||||
<div class="gap-1">
|
||||
<Typography class="leading-5 hover:text-gray-900" variant="tile-title">
|
||||
{value.title}
|
||||
</Typography>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ const { value } = Astro.props;
|
|||
src={value.image}
|
||||
alt={value.name}
|
||||
/>
|
||||
<div class="tile-content gap-1">
|
||||
<div class="gap-1">
|
||||
<Typography class="leading-5 hover:text-gray-900" variant="tile-title">
|
||||
{value.name}
|
||||
</Typography>
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ const thumbnail = `https://img.youtube.com/vi/${id}/0.jpg`;
|
|||
src={thumbnail}
|
||||
alt={title}
|
||||
/>
|
||||
<div class="tile-content gap-1">
|
||||
<div class="gap-1">
|
||||
<Typography class="leading-5 hover:text-gray-900" variant="tile-title">
|
||||
{title}
|
||||
</Typography>
|
||||
|
|
|
|||
Loading…
Reference in a new issue