diff options
| author | Kenimarru <[email protected]> | 2024-01-06 19:03:38 +0100 |
|---|---|---|
| committer | Kenimarru <[email protected]> | 2024-01-06 19:03:38 +0100 |
| commit | 8d176733b41de28198c8324b7f2328a2c30a3ffd (patch) | |
| tree | 9cfb56baca6081630cc2d0510c139029983442c3 | |
| parent | v0.2.4 (diff) | |
| download | hiruku-8d176733b41de28198c8324b7f2328a2c30a3ffd.tar.xz hiruku-8d176733b41de28198c8324b7f2328a2c30a3ffd.zip | |
v0.2.4
| -rw-r--r-- | components/Details.vue | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/components/Details.vue b/components/Details.vue index 7ca827a..ae8bce4 100644 --- a/components/Details.vue +++ b/components/Details.vue @@ -40,6 +40,12 @@ <div v-html="information.info.description" class="text-primary w-full h-48 overflow-y-auto pr-2" /> </div> </section> + <section class="flex md:hidden justify-center items-center w-full"> + <NuxtLink v-if="information.episodes.episodes && information.episodes.episodes.length > 0" + :to="`/e/${id}/${information.episodes.episodes[0].id}`" + class="text-primary bg-secondary w-full text-center rounded-sm py-1 hover:bg-opacity-75"> + Watch Now</NuxtLink> + </section> </section> <section v-if="information.recommendations.results && information.recommendations.results.length > 0" class="space-y-4"> |