From e4066fc24611dadcda18b17fec3b24de92d95e78 Mon Sep 17 00:00:00 2001 From: DecDuck Date: Tue, 11 Mar 2025 11:47:35 +1100 Subject: [PATCH] fix: store page styling --- server/assets/core.scss | 4 ++-- server/components/AddLibraryButton.vue | 4 ++-- server/pages/store/index.vue | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/server/assets/core.scss b/server/assets/core.scss index eddfa750..8fe785b7 100644 --- a/server/assets/core.scss +++ b/server/assets/core.scss @@ -65,8 +65,8 @@ $helvetica: ( } -.store-caoursel > .carousel__viewport { - overflow: visible !important; +.store-carousel > .carousel__viewport { + overflow-y: visible !important; } diff --git a/server/components/AddLibraryButton.vue b/server/components/AddLibraryButton.vue index 19c7ceee..6fa818f1 100644 --- a/server/components/AddLibraryButton.vue +++ b/server/components/AddLibraryButton.vue @@ -4,7 +4,7 @@ :loading="isLibraryLoading" @click="() => toggleLibrary()" :style="'none'" - class="transition w-48 h-fit gap-x-2 rounded-none rounded-l-md bg-white/10 hover:bg-white/20 text-zinc-100 backdrop-blur px-5 py-3 active:scale-95" + class="transition w-48 inline-flex items-center justify-center h-full gap-x-2 rounded-none rounded-l-md bg-white/10 hover:bg-white/20 text-zinc-100 backdrop-blur px-5 py-3 active:scale-95" > {{ inLibrary ? "In Library" : "Add to Library" }}