Increase hover target area for workflow node dots (#16750)

Closes #14137 



https://github.com/user-attachments/assets/99f756be-ff8e-47ed-98fc-8672c2522d8f
This commit is contained in:
Abdul Rahman
2025-12-23 16:19:52 +05:30
committed by GitHub
parent 42ad4630ea
commit 81918e8720
@@ -43,6 +43,17 @@ const StyledHandle = styled(Handle, {
border-color: ${colors.selected.borderColor};
`;
}}
&::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: calc(100% + ${({ theme }) => theme.spacing(4)});
height: calc(100% + ${({ theme }) => theme.spacing(4)});
}
transition:
transform 0.1s ease-out,
background 0.1s,