diff options
| author | Factiven <[email protected]> | 2023-09-25 00:44:40 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-09-25 00:44:40 +0700 |
| commit | 1a85c2571690ba592ac5183d5eadaf9846fe532b (patch) | |
| tree | 3f3552c00cd49c0eeab5275275cf5cf5666e5027 /components/anime/viewMode/thumbnailOnly.js | |
| parent | Delete .github/workflows/deploy.yml (diff) | |
| download | moopa-4.1.0.tar.xz moopa-4.1.0.zip | |
Update v4.1.0 (#79)v4.1.0
* Update v4.1.0
* Update pages/_app.js
Diffstat (limited to 'components/anime/viewMode/thumbnailOnly.js')
| -rw-r--r-- | components/anime/viewMode/thumbnailOnly.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/anime/viewMode/thumbnailOnly.js b/components/anime/viewMode/thumbnailOnly.js index 69cd8c3..7259beb 100644 --- a/components/anime/viewMode/thumbnailOnly.js +++ b/components/anime/viewMode/thumbnailOnly.js @@ -23,7 +23,7 @@ export default function ThumbnailOnly({ className="transition-all duration-200 ease-out lg:hover:scale-105 hover:ring-1 hover:ring-white cursor-pointer bg-secondary shrink-0 relative w-full h-[180px] sm:h-[130px] subpixel-antialiased rounded-md overflow-hidden" > <span className="absolute text-sm z-40 bottom-1 left-2 font-karla font-semibold text-white"> - Episode {episode?.number} + Episode {episode?.number || 0} </span> <span className={`absolute bottom-7 left-0 h-[2px] bg-red-600`} @@ -40,7 +40,7 @@ export default function ThumbnailOnly({ {image && ( <Image src={image || ""} - alt="epi image" + alt={`Episode ${episode?.number} Thumbnail`} width={500} height={500} className="object-cover w-full h-[150px] sm:h-[100px] z-20 brightness-75" |