Merge pull request #3601 from bcakmakoglu/refactor/handle-styles

refactor(system,styles)!: use translate to align handles to center of its side
This commit is contained in:
Moritz Klack
2023-11-13 11:18:53 +01:00
committed by GitHub
2 changed files with 13 additions and 8 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@xyflow/system': major
---
Use css `translate` to align handles to the center of their side instead of using hard-coded 4px to each direction, otherwise handles with different sizes aren't correctly aligned by the default handle styles
+8 -8
View File
@@ -183,26 +183,26 @@
&-bottom {
top: auto;
left: 50%;
bottom: -4px;
transform: translate(-50%, 0);
bottom: 0;
transform: translate(-50%, 50%);
}
&-top {
top: 0;
left: 50%;
top: -4px;
transform: translate(-50%, 0);
transform: translate(-50%, -50%);
}
&-left {
top: 50%;
left: -4px;
transform: translate(0, -50%);
left: 0;
transform: translate(-50%, -50%);
}
&-right {
right: -4px;
top: 50%;
transform: translate(0, -50%);
right: 0;
transform: translate(50%, -50%);
}
}