From c49d814182e34c0caa54848b7c39812f618c1d4c Mon Sep 17 00:00:00 2001 From: alger Date: Thu, 28 Nov 2024 23:45:44 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat:=20=E4=BC=98=E5=8C=96=E6=BB=9A?= =?UTF-8?q?=E5=8A=A8=E6=9D=A1=20=E4=BD=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/list/index.vue | 4 ++-- src/views/mv/index.vue | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/list/index.vue b/src/views/list/index.vue index d34fc98..6bb6ca9 100644 --- a/src/views/list/index.vue +++ b/src/views/list/index.vue @@ -189,13 +189,13 @@ watch( } .recommend { - @apply w-full h-full bg-none px-4; + @apply w-full h-full bg-none; &-title { @apply text-lg font-bold text-white pb-4; } &-list { - @apply grid gap-x-8 gap-y-6 pb-28; + @apply grid gap-x-8 gap-y-6 pb-28 pr-4; grid-template-columns: repeat(v-bind(ITEMS_PER_ROW), minmax(0, 1fr)); } &-item { diff --git a/src/views/mv/index.vue b/src/views/mv/index.vue index 9a0f2a6..b68f0ae 100644 --- a/src/views/mv/index.vue +++ b/src/views/mv/index.vue @@ -162,14 +162,14 @@ const isPrevDisabled = computed(() => currentIndex.value === 0);