diff --git a/src/components/Universe/CursorTooltip/index.tsx b/src/components/Universe/CursorTooltip/index.tsx index 23e820772..a585d7ccc 100644 --- a/src/components/Universe/CursorTooltip/index.tsx +++ b/src/components/Universe/CursorTooltip/index.tsx @@ -5,7 +5,7 @@ import { useHoveredNode } from '~/stores/useGraphStore' import { colors } from '~/utils' import { HoverCard } from './HoverCard/index' -const CURSOR_SIZE = 100 +const CURSOR_SIZE = 70 export const CursorTooltip = () => { const tooltipRef = useRef(null) @@ -70,20 +70,6 @@ export const CursorTooltip = () => { <> - - {node ? ( - <> - Click to - Select - - ) : ( - <> - Scroll to - Explore - - )} - - + @@ -126,8 +112,6 @@ const CustomCursorWrapper = styled(Flex)` justify-content: center; .inner-circle { - width: ${CURSOR_SIZE - 30}px; - height: ${CURSOR_SIZE - 30}px; border-radius: 50%; border: 1px solid ${colors.white}; border-color: rgba(255, 255, 255, 0.2); @@ -163,6 +147,7 @@ const CustomCursorWrapper = styled(Flex)` top: 50%; left: 50%; transform: translateX(-50%) translateY(-50%); + margin-top: -2px; } } `