fix(ui): fix request list UI behavior when season list is too long (#1106)

* fix(ui): fix request list UI behavior when season list is too long

* fix: add default variants to Tailwind scale
This commit is contained in:
TheCatLady
2021-03-06 20:40:47 -05:00
committed by GitHub
parent 9d0b52a242
commit 85076919c6
4 changed files with 24 additions and 21 deletions

View File

@@ -111,7 +111,7 @@ const RequestCard: React.FC<RequestCardProps> = ({ request, onTitleData }) => {
: `/tv/${requestData.media.tmdbId}`
}
>
<a className="overflow-hidden text-base text-white cursor-pointer sm:text-lg overflow-ellipsis whitespace-nowrap hover:underline">
<a className="pb-0.5 sm:pb-1 overflow-hidden text-base text-white cursor-pointer sm:text-lg overflow-ellipsis whitespace-nowrap hover:underline">
{isMovie(title) ? title.title : title.name}
</a>
</Link>