mirror of
https://github.com/mmahdium/TBW.git
synced 2026-08-14 16:22:48 +03:30
Minor updates
This commit is contained in:
@@ -69,7 +69,7 @@ const alreadyAdded = computed(() =>
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Actions -->
|
<!-- Actions -->
|
||||||
<div class="card-actions">
|
<div class="card-actions" v-auto-animate>
|
||||||
<button
|
<button
|
||||||
v-if="!alreadyAdded"
|
v-if="!alreadyAdded"
|
||||||
class="btn px-6 bg-gradient-to-r from-gray-100 to-gray-200 border border-gray-300 text-gray-700 hover:from-gray-200 hover:to-gray-300"
|
class="btn px-6 bg-gradient-to-r from-gray-100 to-gray-200 border border-gray-300 text-gray-700 hover:from-gray-200 hover:to-gray-300"
|
||||||
@@ -82,7 +82,7 @@ const alreadyAdded = computed(() =>
|
|||||||
class="btn px-6 bg-gradient-to-r from-red-50 to-red-100 border border-red-200 text-red-600 hover:from-red-100 hover:to-red-200"
|
class="btn px-6 bg-gradient-to-r from-red-50 to-red-100 border border-red-200 text-red-600 hover:from-red-100 hover:to-red-200"
|
||||||
@click="store.removeMovie(props.movie.imdbID)"
|
@click="store.removeMovie(props.movie.imdbID)"
|
||||||
>
|
>
|
||||||
Remove from list
|
Remove from library
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<RouterLink
|
<RouterLink
|
||||||
|
|||||||
@@ -13,12 +13,9 @@ onMounted(() => {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div class="flex justify-center min-h-auto px-4 py-12 bg-gradient-to-b from-gray-50 to-white">
|
||||||
class="flex justify-center min-h-auto px-4 py-12 bg-gradient-to-b from-gray-50 to-white"
|
|
||||||
>
|
|
||||||
<div
|
<div
|
||||||
class="w-full max-w-6xl bg-white/70 backdrop-blur-md border border-gray-200/60
|
class="w-full max-w-6xl bg-white/70 backdrop-blur-md border border-gray-200/60 shadow-md rounded-xl p-4 lg:p-8 transition flex flex-col items-center"
|
||||||
shadow-md rounded-xl p-4 lg:p-8 transition flex flex-col items-center"
|
|
||||||
v-motion-fade-visible-once
|
v-motion-fade-visible-once
|
||||||
>
|
>
|
||||||
<!-- Title with Experimental badge -->
|
<!-- Title with Experimental badge -->
|
||||||
@@ -40,7 +37,7 @@ onMounted(() => {
|
|||||||
<!-- Responsive iframe -->
|
<!-- Responsive iframe -->
|
||||||
<div v-show="isLoaded" class="w-full aspect-video rounded-lg overflow-hidden shadow-lg">
|
<div v-show="isLoaded" class="w-full aspect-video rounded-lg overflow-hidden shadow-lg">
|
||||||
<iframe
|
<iframe
|
||||||
:src="'https://vidlink.pro/movie/' + movieId"
|
:src="'https://vidlink.pro/movie/' + movieId + '?autoplay=true&title=false'"
|
||||||
frameborder="0"
|
frameborder="0"
|
||||||
allowfullscreen
|
allowfullscreen
|
||||||
class="w-full h-full"
|
class="w-full h-full"
|
||||||
@@ -50,8 +47,8 @@ onMounted(() => {
|
|||||||
|
|
||||||
<!-- Disclaimer -->
|
<!-- Disclaimer -->
|
||||||
<p class="mt-6 text-sm text-gray-500 text-center max-w-2xl">
|
<p class="mt-6 text-sm text-gray-500 text-center max-w-2xl">
|
||||||
⚠️ This player is provided by a <span class="font-semibold">third‑party service</span>.
|
⚠️ This player is provided by a <span class="font-semibold">third‑party service</span>. Ads
|
||||||
Ads and pop‑ups may appear, and I do not control or endorse them.
|
and pop‑ups may appear, and I do not control or endorse them.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user