chore(deps): bump tailwindcss to v4

This commit is contained in:
2026-02-10 10:29:50 +08:00
parent 2c4951ff9b
commit d0bca215c1
35 changed files with 117 additions and 88 deletions

View File

@@ -947,7 +947,7 @@ const onCreateSubmit = async (
v-if="row.info.opening_url"
:src="row.info.opening_url"
:alt="row.info.title"
class="w-16 h-9 object-cover rounded cursor-pointer hover:opacity-80 transition-opacity"
class="w-16 h-9 object-cover rounded-sm cursor-pointer hover:opacity-80 transition-opacity"
@click="
previewVideo(
row.info.opening_file,
@@ -989,12 +989,12 @@ const onCreateSubmit = async (
v-if="row.opening_url"
:src="row.opening_url"
alt="片头"
class="w-14 h-8 object-cover rounded cursor-pointer hover:opacity-80 transition-opacity ring-1 ring-blue-200 dark:ring-blue-800"
class="w-14 h-8 object-cover rounded-sm cursor-pointer hover:opacity-80 transition-opacity ring-1 ring-blue-200 dark:ring-blue-800"
@click="previewVideo(row.opening_file, '制作片头预览')"
/>
<div
v-else
class="w-14 h-8 bg-blue-100 dark:bg-blue-900/30 rounded flex items-center justify-center cursor-pointer hover:opacity-80 transition-opacity"
class="w-14 h-8 bg-blue-100 dark:bg-blue-900/30 rounded-sm flex items-center justify-center cursor-pointer hover:opacity-80 transition-opacity"
@click="previewVideo(row.opening_file, '制作片头预览')"
>
<UIcon
@@ -1015,12 +1015,12 @@ const onCreateSubmit = async (
v-if="row.ending_url"
:src="row.ending_url"
alt="片尾"
class="w-14 h-8 object-cover rounded cursor-pointer hover:opacity-80 transition-opacity ring-1 ring-green-200 dark:ring-green-800"
class="w-14 h-8 object-cover rounded-sm cursor-pointer hover:opacity-80 transition-opacity ring-1 ring-green-200 dark:ring-green-800"
@click="previewVideo(row.ending_file, '制作片尾预览')"
/>
<div
v-else
class="w-14 h-8 bg-green-100 dark:bg-green-900/30 rounded flex items-center justify-center cursor-pointer hover:opacity-80 transition-opacity"
class="w-14 h-8 bg-green-100 dark:bg-green-900/30 rounded-sm flex items-center justify-center cursor-pointer hover:opacity-80 transition-opacity"
@click="previewVideo(row.ending_file, '制作片尾预览')"
>
<UIcon
@@ -1364,7 +1364,7 @@ const onCreateSubmit = async (
v-if="previewVideoUrl"
:src="previewVideoUrl"
controls
class="w-full h-full rounded"
class="w-full h-full rounded-sm"
/>
</div>
</UCard>
@@ -1395,7 +1395,7 @@ const onCreateSubmit = async (
v-if="previewImageUrl"
:src="previewImageUrl"
:alt="previewImageTitle"
class="max-w-full max-h-[70vh] rounded object-contain"
class="max-w-full max-h-[70vh] rounded-sm object-contain"
/>
</div>
</UCard>