From 6b1b9885a05f15948f1a58afd141e3d39643ec82 Mon Sep 17 00:00:00 2001 From: clkim Date: Wed, 5 Nov 2025 15:05:09 +0900 Subject: [PATCH] =?UTF-8?q?fix.=20sns=20=EB=B2=84=ED=8A=BC=20=EB=8F=99?= =?UTF-8?q?=EC=9E=91=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- layers/components/atoms/Button/Sns.vue | 26 +++++--------------- layers/components/blocks/slide/Thumbnail.vue | 19 +++++++++++--- layers/components/widgets/Background.vue | 2 +- 3 files changed, 22 insertions(+), 25 deletions(-) diff --git a/layers/components/atoms/Button/Sns.vue b/layers/components/atoms/Button/Sns.vue index 747884a..3797bff 100644 --- a/layers/components/atoms/Button/Sns.vue +++ b/layers/components/atoms/Button/Sns.vue @@ -20,23 +20,11 @@ const snsList = computed(() => { }) const handleMouseEnter = () => { - if (isForceClosed.value) return showSnsList.value = true } -const handleMouseLeave = () => { - if (isForceClosed.value) return - showSnsList.value = false -} - const handleForceClose = () => { - isForceClosed.value = true showSnsList.value = false - - // 일정 시간 뒤 다시 hover 가능하도록 초기화 - setTimeout(() => { - isForceClosed.value = false - }, 500) } const handleCopy = async () => { @@ -53,14 +41,12 @@ const handleCopy = async () => {