Skip to content

Commit

Permalink
feat: Update Tree component styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Mirrorgo committed Oct 8, 2024
1 parent 3694ead commit f1215aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/Tree/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ export default function Tree({ data, nextComponent }: TreeProps) {
.attr("y1", (d) => (d.source as d3.HierarchyPointNode<TreeNode>).y)
.attr("x2", (d) => (d.target as d3.HierarchyPointNode<TreeNode>).x)
.attr("y2", (d) => (d.target as d3.HierarchyPointNode<TreeNode>).y)
.attr("stroke", "gray");

.attr("stroke", "#e9bc39")
.attr("stroke-width", 3);
// Create groups for each node
const groups = g
.selectAll("g")
Expand Down

0 comments on commit f1215aa

Please sign in to comment.