diff --git a/lib/interviewer/Interfaces/CategoricalBin/components/CategoricalBinItem.tsx b/lib/interviewer/Interfaces/CategoricalBin/components/CategoricalBinItem.tsx index d15dbfa14..6a54ad4e5 100644 --- a/lib/interviewer/Interfaces/CategoricalBin/components/CategoricalBinItem.tsx +++ b/lib/interviewer/Interfaces/CategoricalBin/components/CategoricalBinItem.tsx @@ -160,16 +160,18 @@ const CategoricalBinItem = (props: CategoricalBinItemProps) => { } const circleClasses = cx( - 'focusable flex min-w-0 cursor-pointer flex-col items-center justify-center overflow-hidden text-center outline-(--cat-color)', - 'border-4 p-4', - 'border-(--cat-color)', - catColor && 'bg-[oklch(from_var(--cat-color)_l_c_h/0.1)]', - !catColor && 'bg-surface', + 'focusable flex min-w-0 cursor-pointer items-center justify-center text-center outline-(--cat-color)', isOver && willAccept && 'scale-110 shadow-[0_0_24px_var(--cat-color)] ring-4 ring-(--cat-color)', ); + const circleContentClasses = cx( + 'flex size-full flex-col items-center justify-center border-4 border-(--cat-color) p-4 text-center', + catColor && 'bg-[oklch(from_var(--cat-color)_l_c_h/0.1)]', + !catColor && 'bg-surface', + ); + return ( { transition={springTransition} variants={binItemVariants} > - - {label} - - - {nodes.length > 0 && ( - - - - )} - +
+ + {label} + + + {nodes.length > 0 && ( + + + + )} + +
); };