diff --git a/app/components/ui/anime-card/AnimeCard.vue b/app/components/ui/anime-card/AnimeCard.vue index a88899b..5f6a8b3 100644 --- a/app/components/ui/anime-card/AnimeCard.vue +++ b/app/components/ui/anime-card/AnimeCard.vue @@ -56,7 +56,7 @@ onMounted(async () => {

{{ props.item.title }}

-

+

{{ props.item.material_data?.description }}

diff --git a/app/components/ui/button/index.ts b/app/components/ui/button/index.ts index 337ec95..84e2e9f 100644 --- a/app/components/ui/button/index.ts +++ b/app/components/ui/button/index.ts @@ -18,6 +18,7 @@ export const buttonVariants = cva( ghost: 'hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50', link: 'text-primary underline-offset-4 hover:underline', + borderless: 'border-0 cursor-pointer size-20' }, size: { default: 'h-9 px-4 py-2 has-[>svg]:px-3', diff --git a/app/components/ui/player/ChangeEpisodeButton.vue b/app/components/ui/player/ChangeEpisodeButton.vue new file mode 100644 index 0000000..ae507d7 --- /dev/null +++ b/app/components/ui/player/ChangeEpisodeButton.vue @@ -0,0 +1,37 @@ + + + + + diff --git a/app/components/ui/player/Player.vue b/app/components/ui/player/Player.vue index b220fac..cbee975 100644 --- a/app/components/ui/player/Player.vue +++ b/app/components/ui/player/Player.vue @@ -1,10 +1,13 @@