fix: border style

This commit is contained in:
2026-03-10 22:51:49 +01:00
parent bfc8c560b2
commit dd1de7cb1e
2 changed files with 5 additions and 4 deletions

View File

@@ -32,12 +32,13 @@ body {
}
.react-flow__node:focus-visible>div:first-child {
border-color: hsl(var(--primary) / 0.7);
box-shadow: 0 0 0 2px hsl(var(--primary) / 0.22);
border-color: hsl(var(--primary) / 0.5);
box-shadow: 0 0 0 2px hsl(var(--primary) / 0.15);
}
.dark .react-flow__node:focus-visible>div:first-child {
box-shadow: 0 0 0 2px hsl(var(--primary) / 0.28);
border-color: hsl(var(--primary) / 0.35);
box-shadow: 0 0 0 2px hsl(var(--primary) / 0.1);
}
.react-flow__node .react-flow__handle {