From f00395cc1bd31e5b09075bf4bad4aadb389e3aa3 Mon Sep 17 00:00:00 2001 From: Utkarsh-Singhal-26 Date: Tue, 22 Jul 2025 08:51:44 +0530 Subject: [PATCH] minor fix --- .../Components/ScrollStack/ScrollStack.vue | 25 ------------------- 1 file changed, 25 deletions(-) diff --git a/src/content/Components/ScrollStack/ScrollStack.vue b/src/content/Components/ScrollStack/ScrollStack.vue index 1f9814d..24f505a 100644 --- a/src/content/Components/ScrollStack/ScrollStack.vue +++ b/src/content/Components/ScrollStack/ScrollStack.vue @@ -241,31 +241,6 @@ watch( }, { deep: true } ); - -// export const ScrollStackItem = defineComponent({ -// name: 'ScrollStackItem', -// props: { -// itemClassName: { -// type: String, -// default: '' -// } -// }, -// setup(props, { slots }) { -// return () => -// h( -// 'div', -// { -// class: -// `scroll-stack-card relative w-full h-80 my-8 p-12 rounded-[40px] shadow-[0_0_30px_rgba(0,0,0,0.1)] box-border origin-top will-change-transform ${props.itemClassName}`.trim(), -// style: { -// backfaceVisibility: 'hidden', -// transformStyle: 'preserve-3d' -// } -// }, -// slots.default?.() -// ); -// } -// });