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}
|
src={value.cover}
|
||||||
alt={value.title}
|
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">
|
<Typography class="leading-5, hover:text-gray-900" variant="tile-title">
|
||||||
{value.title}
|
{value.title}
|
||||||
</Typography>
|
</Typography>
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ const { value } = Astro.props;
|
||||||
src={value.image}
|
src={value.image}
|
||||||
alt={value.title}
|
alt={value.title}
|
||||||
/>
|
/>
|
||||||
<div class="tile-content gap-1">
|
<div class="gap-1">
|
||||||
<Typography class="leading-5 hover:text-gray-900" variant="tile-title">
|
<Typography class="leading-5 hover:text-gray-900" variant="tile-title">
|
||||||
{value.title}
|
{value.title}
|
||||||
</Typography>
|
</Typography>
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ const { value } = Astro.props;
|
||||||
src={value.image}
|
src={value.image}
|
||||||
alt={value.name}
|
alt={value.name}
|
||||||
/>
|
/>
|
||||||
<div class="tile-content gap-1">
|
<div class="gap-1">
|
||||||
<Typography class="leading-5 hover:text-gray-900" variant="tile-title">
|
<Typography class="leading-5 hover:text-gray-900" variant="tile-title">
|
||||||
{value.name}
|
{value.name}
|
||||||
</Typography>
|
</Typography>
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ const thumbnail = `https://img.youtube.com/vi/${id}/0.jpg`;
|
||||||
src={thumbnail}
|
src={thumbnail}
|
||||||
alt={title}
|
alt={title}
|
||||||
/>
|
/>
|
||||||
<div class="tile-content gap-1">
|
<div class="gap-1">
|
||||||
<Typography class="leading-5 hover:text-gray-900" variant="tile-title">
|
<Typography class="leading-5 hover:text-gray-900" variant="tile-title">
|
||||||
{title}
|
{title}
|
||||||
</Typography>
|
</Typography>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue