Spaces:
Build error
Build error
File size: 973 Bytes
09f9586 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | @tailwind base;
@tailwind components;
@tailwind utilities;
body {
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
min-height: 100vh;
}
.node-connection {
stroke: #64748b;
stroke-width: 2;
fill: none;
transition: stroke 0.2s;
}
.node-connection:hover {
stroke: #94a3b8;
stroke-width: 3;
}
.node-connection.active {
stroke: #22c55e;
stroke-width: 3;
animation: pulse-line 1.5s ease-in-out infinite;
}
@keyframes pulse-line {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
.canvas-grid {
background-image:
linear-gradient(rgba(100, 116, 139, 0.1) 1px, transparent 1px),
linear-gradient(90deg, rgba(100, 116, 139, 0.1) 1px, transparent 1px);
background-size: 20px 20px;
}
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #1e293b;
}
::-webkit-scrollbar-thumb {
background: #475569;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #64748b;
} |