fix. AtomsButtonLauncher 컴포넌트 수정

This commit is contained in:
clkim
2025-10-30 18:22:26 +09:00
parent 74ce5a0714
commit db9f3094fd
13 changed files with 218 additions and 92 deletions

View File

@@ -22,15 +22,17 @@ const pinToParent = computed(() => {
</script>
<template>
<div :class="['utile-container', { 'is-fixed': pinToParent }]">
<AtomsButtonScrollTop v-if="props.isShowTopBtn" />
<AtomsButtonSns v-if="props.isShowSnsBtn" />
</div>
<ClientOnly>
<div :class="['utile-container', { 'is-fixed': pinToParent }]">
<AtomsButtonScrollTop v-if="props.isShowTopBtn" />
<AtomsButtonSns v-if="props.isShowSnsBtn" />
</div>
</ClientOnly>
</template>
<style scoped>
.utile-container {
@apply fixed flex flex-col
@apply fixed flex flex-col z-[100]
bottom-[12px] right-[12px] gap-2 md:bottom-[40px] md:right-[40px] md:gap-3;
}
.utile-container.is-fixed {