summaryrefslogtreecommitdiffstats
path: root/src/components/OrgChart.vue
diff options
context:
space:
mode:
authorSimon L <szaimen@e.mail.de>2023-05-12 16:11:33 +0200
committerSimon L <szaimen@e.mail.de>2023-05-12 16:11:33 +0200
commita53177df51206bdf8bba1bf79846552a15982b94 (patch)
tree2573219d6f151129699db1a3a34c252610c9efd2 /src/components/OrgChart.vue
parenta1889d1a2dc4a67411b3eae7eb75b3aa2db0bed5 (diff)
Use the color-primary-element* variables
Signed-off-by: Simon L <szaimen@e.mail.de>
Diffstat (limited to 'src/components/OrgChart.vue')
-rw-r--r--src/components/OrgChart.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/OrgChart.vue b/src/components/OrgChart.vue
index 87f2e233..7eedbb76 100644
--- a/src/components/OrgChart.vue
+++ b/src/components/OrgChart.vue
@@ -135,7 +135,7 @@ export default {
})
.linkUpdate(function(d) {
d3.select(this)
- .attr('stroke', () => 'var(--color-primary)')
+ .attr('stroke', () => 'var(--color-primary-element)')
.attr('stroke-width', (dRect) =>
dRect.data._upToTheRootHighlighted ? 2 : 1
)