Skip to content

Commit b03a611

Browse files
fix: enforce absolute positioning for nodes and groups in styles
1 parent 0fc9da4 commit b03a611

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

projects/f-flow/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@foblex/flow",
3-
"version": "17.8.6",
3+
"version": "17.8.8",
44
"description": "An Angular library designed to simplify the creation and manipulation of dynamic flow. Provides components for flows, nodes, and connections, automating node manipulation and inter-node connections.",
55
"main": "index.js",
66
"types": "index.d.ts",

projects/f-flow/src/f-flow/f-flow.component.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121

2222
.f-node,
2323
.f-group {
24-
position: absolute;
24+
position: absolute !important;
2525
transform-origin: center;
2626
user-select: none;
2727
pointer-events: all;
28-
left: 0;
29-
top: 0;
28+
left: 0 !important;
29+
top: 0 !important;
3030
}
3131
}

0 commit comments

Comments
 (0)