fix: always show node border color, widen to 2px on selection

This commit is contained in:
Pouzor
2026-03-07 14:37:46 +01:00
parent 37c963cf96
commit 7dd500feee
2 changed files with 3 additions and 2 deletions
@@ -38,7 +38,7 @@ export function ProxmoxGroupNode(props: NodeProps<Node<NodeData>>) {
<div
className="w-full h-full rounded-xl border-2 flex flex-col overflow-hidden"
style={{
borderColor: selected ? glow : isOnline ? `${glow}66` : '#30363d',
borderColor: selected ? glow : `${glow}88`,
background: isOnline ? `${colors.background}cc` : `${colors.background}aa`,
boxShadow: isOnline
? `0 0 20px ${glow}1a, inset 0 0 40px ${glow}08`